Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2009 |
| 4 | * Marvell Semiconductor <www.marvell.com> |
| 5 | * Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
Stefan Roese | ebda3ec | 2015-04-25 06:29:47 +0200 | [diff] [blame] | 8 | #ifndef _MVEBU_CPU_H |
| 9 | #define _MVEBU_CPU_H |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 10 | |
| 11 | #include <asm/system.h> |
| 12 | |
| 13 | #ifndef __ASSEMBLY__ |
| 14 | |
| 15 | #define MVEBU_REG_PCIE_DEVID (MVEBU_REG_PCIE_BASE + 0x00) |
| 16 | #define MVEBU_REG_PCIE_REVID (MVEBU_REG_PCIE_BASE + 0x08) |
| 17 | |
| 18 | enum memory_bank { |
| 19 | BANK0, |
| 20 | BANK1, |
| 21 | BANK2, |
| 22 | BANK3 |
| 23 | }; |
| 24 | |
| 25 | enum cpu_winen { |
| 26 | CPU_WIN_DISABLE, |
| 27 | CPU_WIN_ENABLE |
| 28 | }; |
| 29 | |
| 30 | enum cpu_target { |
| 31 | CPU_TARGET_DRAM = 0x0, |
| 32 | CPU_TARGET_DEVICEBUS_BOOTROM_SPI = 0x1, |
| 33 | CPU_TARGET_ETH23 = 0x3, |
| 34 | CPU_TARGET_PCIE02 = 0x4, |
| 35 | CPU_TARGET_ETH01 = 0x7, |
| 36 | CPU_TARGET_PCIE13 = 0x8, |
Chris Packham | a8f845e | 2019-04-11 22:22:50 +1200 | [diff] [blame] | 37 | CPU_TARGET_DFX = 0x8, |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 38 | CPU_TARGET_SASRAM = 0x9, |
Mario Six | 10d1449 | 2017-01-11 16:01:00 +0100 | [diff] [blame] | 39 | CPU_TARGET_SATA01 = 0xa, /* A38X */ |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 40 | CPU_TARGET_NAND = 0xd, |
Mario Six | 10d1449 | 2017-01-11 16:01:00 +0100 | [diff] [blame] | 41 | CPU_TARGET_SATA23_DFX = 0xe, /* A38X */ |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | enum cpu_attrib { |
| 45 | CPU_ATTR_SASRAM = 0x01, |
| 46 | CPU_ATTR_DRAM_CS0 = 0x0e, |
| 47 | CPU_ATTR_DRAM_CS1 = 0x0d, |
| 48 | CPU_ATTR_DRAM_CS2 = 0x0b, |
| 49 | CPU_ATTR_DRAM_CS3 = 0x07, |
| 50 | CPU_ATTR_NANDFLASH = 0x2f, |
| 51 | CPU_ATTR_SPIFLASH = 0x1e, |
Stefan Roese | bca3d86 | 2016-02-12 13:52:16 +0100 | [diff] [blame] | 52 | CPU_ATTR_SPI0_CS0 = 0x1e, |
| 53 | CPU_ATTR_SPI0_CS1 = 0x5e, |
| 54 | CPU_ATTR_SPI1_CS2 = 0x9a, |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 55 | CPU_ATTR_BOOTROM = 0x1d, |
| 56 | CPU_ATTR_PCIE_IO = 0xe0, |
| 57 | CPU_ATTR_PCIE_MEM = 0xe8, |
| 58 | CPU_ATTR_DEV_CS0 = 0x3e, |
| 59 | CPU_ATTR_DEV_CS1 = 0x3d, |
| 60 | CPU_ATTR_DEV_CS2 = 0x3b, |
| 61 | CPU_ATTR_DEV_CS3 = 0x37, |
| 62 | }; |
| 63 | |
Stefan Roese | 174d23e | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 64 | enum { |
| 65 | MVEBU_SOC_AXP, |
Stefan Roese | 479f9af | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 66 | MVEBU_SOC_A375, |
Stefan Roese | 174d23e | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 67 | MVEBU_SOC_A38X, |
Chris Packham | 348109d | 2017-09-04 17:38:31 +1200 | [diff] [blame] | 68 | MVEBU_SOC_MSYS, |
Stefan Roese | 174d23e | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 69 | MVEBU_SOC_UNKNOWN, |
| 70 | }; |
| 71 | |
Stefan Roese | 10fa44b | 2018-10-22 14:21:17 +0200 | [diff] [blame] | 72 | #define MVEBU_SDRAM_SIZE_MAX 0xc0000000 |
| 73 | |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 74 | /* |
| 75 | * Default Device Address MAP BAR values |
| 76 | */ |
Pali Rohár | ca69af4 | 2021-12-21 12:20:13 +0100 | [diff] [blame] | 77 | #define MBUS_PCI_MAX_PORTS 6 |
Stefan Roese | 10fa44b | 2018-10-22 14:21:17 +0200 | [diff] [blame] | 78 | #define MBUS_PCI_MEM_BASE MVEBU_SDRAM_SIZE_MAX |
Pali Rohár | ca69af4 | 2021-12-21 12:20:13 +0100 | [diff] [blame] | 79 | #define MBUS_PCI_MEM_SIZE ((MBUS_PCI_MAX_PORTS * 128) << 20) |
Stefan Roese | 13b109f | 2015-07-01 12:55:07 +0200 | [diff] [blame] | 80 | #define MBUS_PCI_IO_BASE 0xF1100000 |
Pali Rohár | ca69af4 | 2021-12-21 12:20:13 +0100 | [diff] [blame] | 81 | #define MBUS_PCI_IO_SIZE ((MBUS_PCI_MAX_PORTS * 64) << 10) |
Stefan Roese | 13b109f | 2015-07-01 12:55:07 +0200 | [diff] [blame] | 82 | #define MBUS_SPI_BASE 0xF4000000 |
| 83 | #define MBUS_SPI_SIZE (8 << 20) |
Chris Packham | a8f845e | 2019-04-11 22:22:50 +1200 | [diff] [blame] | 84 | #define MBUS_DFX_BASE 0xF6000000 |
| 85 | #define MBUS_DFX_SIZE (1 << 20) |
Stefan Roese | 13b109f | 2015-07-01 12:55:07 +0200 | [diff] [blame] | 86 | #define MBUS_BOOTROM_BASE 0xF8000000 |
| 87 | #define MBUS_BOOTROM_SIZE (8 << 20) |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 88 | |
| 89 | struct mbus_win { |
| 90 | u32 base; |
| 91 | u32 size; |
| 92 | u8 target; |
| 93 | u8 attr; |
| 94 | }; |
| 95 | |
| 96 | /* |
| 97 | * System registers |
| 98 | * Ref: Datasheet sec:A.28 |
| 99 | */ |
| 100 | struct mvebu_system_registers { |
Stefan Roese | 479f9af | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 101 | #if defined(CONFIG_ARMADA_375) |
| 102 | u8 pad1[0x54]; |
| 103 | #else |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 104 | u8 pad1[0x60]; |
Stefan Roese | 479f9af | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 105 | #endif |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 106 | u32 rstoutn_mask; /* 0x60 */ |
| 107 | u32 sys_soft_rst; /* 0x64 */ |
| 108 | }; |
| 109 | |
| 110 | /* |
| 111 | * GPIO Registers |
| 112 | * Ref: Datasheet sec:A.19 |
| 113 | */ |
| 114 | struct kwgpio_registers { |
| 115 | u32 dout; |
| 116 | u32 oe; |
| 117 | u32 blink_en; |
| 118 | u32 din_pol; |
| 119 | u32 din; |
| 120 | u32 irq_cause; |
| 121 | u32 irq_mask; |
| 122 | u32 irq_level; |
| 123 | }; |
| 124 | |
Stefan Roese | 2a539c8 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 125 | struct sar_freq_modes { |
| 126 | u8 val; |
| 127 | u8 ffc; /* Fabric Frequency Configuration */ |
| 128 | u32 p_clk; |
| 129 | u32 nb_clk; |
| 130 | u32 d_clk; |
| 131 | }; |
| 132 | |
Stefan Roese | 1a16a0c | 2015-01-19 11:33:47 +0100 | [diff] [blame] | 133 | /* Needed for dynamic (board-specific) mbus configuration */ |
| 134 | extern struct mvebu_mbus_state mbus_state; |
| 135 | |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 136 | /* |
| 137 | * functions |
| 138 | */ |
| 139 | unsigned int mvebu_sdram_bar(enum memory_bank bank); |
| 140 | unsigned int mvebu_sdram_bs(enum memory_bank bank); |
| 141 | void mvebu_sdram_size_adjust(enum memory_bank bank); |
| 142 | int mvebu_mbus_probe(struct mbus_win windows[], int count); |
Stefan Roese | 174d23e | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 143 | int mvebu_soc_family(void); |
Stefan Roese | badccc3 | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 144 | u32 mvebu_get_nand_clock(void); |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 145 | |
Pali Rohár | a59971b | 2021-07-23 11:14:24 +0200 | [diff] [blame] | 146 | void __noreturn return_to_bootrom(void); |
Stefan Roese | 99b3ea7 | 2015-08-25 13:49:41 +0200 | [diff] [blame] | 147 | |
Pierre Bourdon | b9af62d | 2019-04-11 04:56:58 +0200 | [diff] [blame] | 148 | #ifndef CONFIG_DM_MMC |
Stefan Roese | d3e3473 | 2015-06-29 14:58:10 +0200 | [diff] [blame] | 149 | int mv_sdh_init(unsigned long regbase, u32 max_clk, u32 min_clk, u32 quirks); |
Pierre Bourdon | b9af62d | 2019-04-11 04:56:58 +0200 | [diff] [blame] | 150 | #endif |
Stefan Roese | d3e3473 | 2015-06-29 14:58:10 +0200 | [diff] [blame] | 151 | |
Marek Behún | ee76b4a | 2021-08-16 15:19:37 +0200 | [diff] [blame] | 152 | u32 get_boot_device(void); |
| 153 | |
Stefan Roese | 2a539c8 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 154 | void get_sar_freq(struct sar_freq_modes *sar_freq); |
| 155 | |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 156 | /* |
| 157 | * Highspeed SERDES PHY config init, ported from bin_hdr |
| 158 | * to mainline U-Boot |
| 159 | */ |
| 160 | int serdes_phy_config(void); |
| 161 | |
| 162 | /* |
| 163 | * DDR3 init / training code ported from Marvell bin_hdr. Now |
| 164 | * available in mainline U-Boot in: |
Stefan Roese | eb753e9 | 2015-03-25 12:51:18 +0100 | [diff] [blame] | 165 | * drivers/ddr/marvell |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 166 | */ |
| 167 | int ddr3_init(void); |
Stefan Roese | ab91fd5 | 2016-01-20 08:13:28 +0100 | [diff] [blame] | 168 | |
Baruch Siach | 056e107 | 2019-07-10 18:23:04 +0300 | [diff] [blame] | 169 | /* Auto Voltage Scaling */ |
Pali Rohár | 9a365e3 | 2021-03-05 15:52:42 +0100 | [diff] [blame] | 170 | #if defined(CONFIG_ARMADA_38X) |
Baruch Siach | 056e107 | 2019-07-10 18:23:04 +0300 | [diff] [blame] | 171 | void mv_avs_init(void); |
Chris Packham | 3667bec | 2020-02-26 19:53:50 +1300 | [diff] [blame] | 172 | void mv_rtc_config(void); |
Baruch Siach | 056e107 | 2019-07-10 18:23:04 +0300 | [diff] [blame] | 173 | #else |
| 174 | static inline void mv_avs_init(void) {} |
Chris Packham | 3667bec | 2020-02-26 19:53:50 +1300 | [diff] [blame] | 175 | static inline void mv_rtc_config(void) {} |
Baruch Siach | 056e107 | 2019-07-10 18:23:04 +0300 | [diff] [blame] | 176 | #endif |
| 177 | |
Marek Behún | e577cc3 | 2020-04-08 19:25:18 +0200 | [diff] [blame] | 178 | /* A8K dram functions */ |
| 179 | u64 a8k_dram_scan_ap_sz(void); |
| 180 | int a8k_dram_init_banksize(void); |
| 181 | |
Marek Behún | f9d5e73 | 2020-04-08 19:25:19 +0200 | [diff] [blame] | 182 | /* A3700 dram functions */ |
| 183 | int a3700_dram_init(void); |
| 184 | int a3700_dram_init_banksize(void); |
| 185 | |
Marek Behún | 41d2c40 | 2020-04-08 19:25:21 +0200 | [diff] [blame] | 186 | /* A3700 PCIe regions fixer for device tree */ |
| 187 | int a3700_fdt_fix_pcie_regions(void *blob); |
| 188 | |
Stefan Roese | 05b1765 | 2016-05-17 15:00:30 +0200 | [diff] [blame] | 189 | /* |
| 190 | * get_ref_clk |
| 191 | * |
| 192 | * return: reference clock in MHz (25 or 40) |
| 193 | */ |
| 194 | u32 get_ref_clk(void); |
| 195 | |
Stefan Roese | 93e6bf4 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 196 | #endif /* __ASSEMBLY__ */ |
Stefan Roese | ebda3ec | 2015-04-25 06:29:47 +0200 | [diff] [blame] | 197 | #endif /* _MVEBU_CPU_H */ |