blob: 1d7f2828cd38288d2937ea81756faad65c7406ef [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +02002/*
3 * (C) Copyright 2009
4 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6 *
7 * Header file for the Marvell's Feroceon CPU core.
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +02008 */
9
10#ifndef _ASM_ARCH_KIRKWOOD_H
11#define _ASM_ARCH_KIRKWOOD_H
12
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020013#if defined (CONFIG_FEROCEON_88FR131) || defined (CONFIG_SHEEVA_88SV131)
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020014
15/* SOC specific definations */
16#define INTREG_BASE 0xd0000000
17#define KW_REGISTER(x) (KW_REGS_PHY_BASE + x)
18#define KW_OFFSET_REG (INTREG_BASE + 0x20080)
19
20/* undocumented registers */
21#define KW_REG_UNDOC_0x1470 (KW_REGISTER(0x1470))
22#define KW_REG_UNDOC_0x1478 (KW_REGISTER(0x1478))
23
Stefan Roese0b741752014-10-22 12:13:13 +020024#define MVEBU_SDRAM_BASE (KW_REGISTER(0x1500))
Heiko Schocher60e286b2009-07-16 09:59:10 +020025#define KW_TWSI_BASE (KW_REGISTER(0x11000))
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020026#define KW_UART0_BASE (KW_REGISTER(0x12000))
Prafulla Wadaskar6761b622009-07-06 15:50:47 +053027#define KW_UART1_BASE (KW_REGISTER(0x12100))
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020028#define KW_MPP_BASE (KW_REGISTER(0x10000))
Stefan Roesec50ab392014-10-22 12:13:11 +020029#define MVEBU_GPIO0_BASE (KW_REGISTER(0x10100))
30#define MVEBU_GPIO1_BASE (KW_REGISTER(0x10140))
Jason Cooper152bf1f2011-08-04 21:26:16 +053031#define KW_RTC_BASE (KW_REGISTER(0x10300))
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020032#define KW_NANDF_BASE (KW_REGISTER(0x10418))
Stefan Roese1b258d52014-10-22 12:13:12 +020033#define MVEBU_SPI_BASE (KW_REGISTER(0x10600))
Chris Packham4b32bb72019-03-13 20:47:01 +130034#define MVEBU_CPU_WIN_BASE (KW_REGISTER(0x20000))
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020035#define KW_CPU_REG_BASE (KW_REGISTER(0x20100))
Stefan Roesecd931e12014-10-22 12:13:08 +020036#define MVEBU_TIMER_BASE (KW_REGISTER(0x20300))
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020037#define KW_REG_PCIE_BASE (KW_REGISTER(0x40000))
Prafulla Wadaskarecb1b022009-06-29 20:55:54 +053038#define KW_USB20_BASE (KW_REGISTER(0x50000))
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020039#define KW_EGIGA0_BASE (KW_REGISTER(0x72000))
40#define KW_EGIGA1_BASE (KW_REGISTER(0x76000))
Prafulla Wadaskar9b81e642010-08-07 17:29:44 +053041#define KW_SATA_BASE (KW_REGISTER(0x80000))
DrEaglead881742014-07-25 21:07:30 +020042#define KW_SDIO_BASE (KW_REGISTER(0x90000))
Prafulla Wadaskar9b81e642010-08-07 17:29:44 +053043
44/* Kirkwood Sata controller has two ports */
45#define KW_SATA_PORT0_OFFSET 0x2000
46#define KW_SATA_PORT1_OFFSET 0x4000
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020047
Albert Aribaud8a995232010-07-12 22:24:29 +020048/* Kirkwood GbE controller has two ports */
49#define MAX_MVGBE_DEVS 2
50#define MVGBE0_BASE KW_EGIGA0_BASE
51#define MVGBE1_BASE KW_EGIGA1_BASE
Albert Aribaude91d7d32010-07-12 22:24:28 +020052
Albert ARIBAUDc3c76452012-01-15 22:08:39 +000053/* Kirkwood USB Host controller */
54#define MVUSB0_BASE KW_USB20_BASE
55#define MVUSB0_CPU_ATTR_DRAM_CS0 KWCPU_ATTR_DRAM_CS0
56#define MVUSB0_CPU_ATTR_DRAM_CS1 KWCPU_ATTR_DRAM_CS1
57#define MVUSB0_CPU_ATTR_DRAM_CS2 KWCPU_ATTR_DRAM_CS2
58#define MVUSB0_CPU_ATTR_DRAM_CS3 KWCPU_ATTR_DRAM_CS3
59
60/* Kirkwood CPU memory windows */
61#define MVCPU_WIN_CTRL_DATA KWCPU_WIN_CTRL_DATA
62#define MVCPU_WIN_ENABLE KWCPU_WIN_ENABLE
63#define MVCPU_WIN_DISABLE KWCPU_WIN_DISABLE
64
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +020065#if defined (CONFIG_KW88F6281)
66#include <asm/arch/kw88f6281.h>
67#elif defined (CONFIG_KW88F6192)
68#include <asm/arch/kw88f6192.h>
69#else
70#error "SOC Name not defined"
71#endif /* CONFIG_KW88F6281 */
72#endif /* CONFIG_FEROCEON_88FR131 */
73#endif /* _ASM_ARCH_KIRKWOOD_H */