Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 |
| 3 | * Marvell Semiconductor <www.marvell.com> |
| 4 | * Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
| 5 | * |
| 6 | * Header file for the Marvell's Feroceon CPU core. |
| 7 | * |
| 8 | * SPDX-License-Identifier: GPL-2.0+ |
| 9 | */ |
| 10 | |
Stefan Roese | ebda3ec | 2015-04-25 06:29:47 +0200 | [diff] [blame] | 11 | #ifndef _MVEBU_SOC_H |
| 12 | #define _MVEBU_SOC_H |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 13 | |
| 14 | #define SOC_MV78460_ID 0x7846 |
Stefan Roese | 174d23e | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 15 | #define SOC_88F6810_ID 0x6810 |
| 16 | #define SOC_88F6820_ID 0x6820 |
| 17 | #define SOC_88F6828_ID 0x6828 |
| 18 | |
| 19 | /* A38x revisions */ |
| 20 | #define MV_88F68XX_Z1_ID 0x0 |
| 21 | #define MV_88F68XX_A0_ID 0x4 |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 22 | |
| 23 | /* TCLK Core Clock definition */ |
| 24 | #ifndef CONFIG_SYS_TCLK |
| 25 | #define CONFIG_SYS_TCLK 250000000 /* 250MHz */ |
| 26 | #endif |
| 27 | |
Stefan Roese | badccc3 | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 28 | /* Armada XP PLL frequency (used for NAND clock generation) */ |
| 29 | #define CONFIG_SYS_MVEBU_PLL_CLOCK 2000000000 |
| 30 | |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 31 | /* SOC specific definations */ |
| 32 | #define INTREG_BASE 0xd0000000 |
| 33 | #define INTREG_BASE_ADDR_REG (INTREG_BASE + 0x20080) |
Stefan Roese | 99b3ea7 | 2015-08-25 13:49:41 +0200 | [diff] [blame] | 34 | #if defined(CONFIG_SPL_BUILD) |
Stefan Roese | 8588a7b | 2015-04-17 18:12:41 +0200 | [diff] [blame] | 35 | /* |
| 36 | * On A38x switching the regs base address without running from |
| 37 | * SDRAM doesn't seem to work. So let the SPL still use the |
| 38 | * default base address and switch to the new address in the |
| 39 | * main u-boot later. |
| 40 | */ |
| 41 | #define SOC_REGS_PHY_BASE 0xd0000000 |
| 42 | #else |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 43 | #define SOC_REGS_PHY_BASE 0xf1000000 |
Stefan Roese | 8588a7b | 2015-04-17 18:12:41 +0200 | [diff] [blame] | 44 | #endif |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 45 | #define MVEBU_REGISTER(x) (SOC_REGS_PHY_BASE + x) |
| 46 | |
| 47 | #define MVEBU_SDRAM_SCRATCH (MVEBU_REGISTER(0x01504)) |
Stefan Roese | 174d23e | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 48 | #define MVEBU_L2_CACHE_BASE (MVEBU_REGISTER(0x08000)) |
| 49 | #define CONFIG_SYS_PL310_BASE MVEBU_L2_CACHE_BASE |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 50 | #define MVEBU_TWSI_BASE (MVEBU_REGISTER(0x11000)) |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 51 | #define MVEBU_MPP_BASE (MVEBU_REGISTER(0x18000)) |
| 52 | #define MVEBU_GPIO0_BASE (MVEBU_REGISTER(0x18100)) |
| 53 | #define MVEBU_GPIO1_BASE (MVEBU_REGISTER(0x18140)) |
| 54 | #define MVEBU_GPIO2_BASE (MVEBU_REGISTER(0x18180)) |
| 55 | #define MVEBU_SYSTEM_REG_BASE (MVEBU_REGISTER(0x18200)) |
Stefan Roese | badccc3 | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 56 | #define MVEBU_CLOCK_BASE (MVEBU_REGISTER(0x18700)) |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 57 | #define MVEBU_CPU_WIN_BASE (MVEBU_REGISTER(0x20000)) |
| 58 | #define MVEBU_SDRAM_BASE (MVEBU_REGISTER(0x20180)) |
| 59 | #define MVEBU_TIMER_BASE (MVEBU_REGISTER(0x20300)) |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 60 | #define MVEBU_REG_PCIE_BASE (MVEBU_REGISTER(0x40000)) |
Stefan Roese | f43d323 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 61 | #define MVEBU_AXP_USB_BASE (MVEBU_REGISTER(0x50000)) |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 62 | #define MVEBU_USB20_BASE (MVEBU_REGISTER(0x58000)) |
Anton Schubert | 3ceae9e | 2015-07-15 14:50:05 +0200 | [diff] [blame] | 63 | #define MVEBU_AXP_SATA_BASE (MVEBU_REGISTER(0xa0000)) |
Stefan Roese | bb1c0bd | 2015-06-29 14:58:13 +0200 | [diff] [blame] | 64 | #define MVEBU_SATA0_BASE (MVEBU_REGISTER(0xa8000)) |
Stefan Roese | badccc3 | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 65 | #define MVEBU_NAND_BASE (MVEBU_REGISTER(0xd0000)) |
Stefan Roese | d3e3473 | 2015-06-29 14:58:10 +0200 | [diff] [blame] | 66 | #define MVEBU_SDIO_BASE (MVEBU_REGISTER(0xd8000)) |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 67 | |
Stefan Roese | 8ac6dab | 2015-07-01 13:28:39 +0200 | [diff] [blame] | 68 | #define SOC_COHERENCY_FABRIC_CTRL_REG (MVEBU_REGISTER(0x20200)) |
| 69 | #define MBUS_ERR_PROP_EN (1 << 8) |
| 70 | |
Stefan Roese | c049ca0 | 2015-07-01 12:44:51 +0200 | [diff] [blame] | 71 | #define MBUS_BRIDGE_WIN_CTRL_REG (MVEBU_REGISTER(0x20250)) |
| 72 | #define MBUS_BRIDGE_WIN_BASE_REG (MVEBU_REGISTER(0x20254)) |
| 73 | |
Stefan Roese | badccc3 | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 74 | #define MVEBU_SOC_DEV_MUX_REG (MVEBU_SYSTEM_REG_BASE + 0x08) |
| 75 | #define NAND_EN BIT(0) |
| 76 | #define NAND_ARBITER_EN BIT(27) |
| 77 | |
| 78 | #define ARMADA_XP_PUP_ENABLE (MVEBU_SYSTEM_REG_BASE + 0x44c) |
| 79 | #define GE0_PUP_EN BIT(0) |
| 80 | #define GE1_PUP_EN BIT(1) |
| 81 | #define LCD_PUP_EN BIT(2) |
| 82 | #define NAND_PUP_EN BIT(4) |
| 83 | #define SPI_PUP_EN BIT(5) |
| 84 | |
| 85 | #define MVEBU_CORE_DIV_CLK_CTRL(i) (MVEBU_CLOCK_BASE + ((i) * 0x8)) |
| 86 | #define NAND_ECC_DIVCKL_RATIO_OFFS 8 |
| 87 | #define NAND_ECC_DIVCKL_RATIO_MASK (0x3F << NAND_ECC_DIVCKL_RATIO_OFFS) |
| 88 | |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 89 | #define SDRAM_MAX_CS 4 |
| 90 | #define SDRAM_ADDR_MASK 0xFF000000 |
| 91 | |
Stefan Roese | ebda3ec | 2015-04-25 06:29:47 +0200 | [diff] [blame] | 92 | /* MVEBU CPU memory windows */ |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 93 | #define MVCPU_WIN_CTRL_DATA CPU_WIN_CTRL_DATA |
| 94 | #define MVCPU_WIN_ENABLE CPU_WIN_ENABLE |
| 95 | #define MVCPU_WIN_DISABLE CPU_WIN_DISABLE |
| 96 | |
Stefan Roese | ebda3ec | 2015-04-25 06:29:47 +0200 | [diff] [blame] | 97 | #endif /* _MVEBU_SOC_H */ |