blob: 904e7157ba61b1cde7d31b900a348cbf79f03464 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roese93e6bf42014-10-22 12:13:17 +02002/*
3 * (C) Copyright 2009
4 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
Stefan Roese93e6bf42014-10-22 12:13:17 +02006 */
7
Stefan Roeseebda3ec2015-04-25 06:29:47 +02008#ifndef _MVEBU_CPU_H
9#define _MVEBU_CPU_H
Stefan Roese93e6bf42014-10-22 12:13:17 +020010
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
18enum memory_bank {
19 BANK0,
20 BANK1,
21 BANK2,
22 BANK3
23};
24
25enum cpu_winen {
26 CPU_WIN_DISABLE,
27 CPU_WIN_ENABLE
28};
29
30enum 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 Packhama8f845e2019-04-11 22:22:50 +120037 CPU_TARGET_DFX = 0x8,
Stefan Roese93e6bf42014-10-22 12:13:17 +020038 CPU_TARGET_SASRAM = 0x9,
Mario Six10d14492017-01-11 16:01:00 +010039 CPU_TARGET_SATA01 = 0xa, /* A38X */
Stefan Roese93e6bf42014-10-22 12:13:17 +020040 CPU_TARGET_NAND = 0xd,
Mario Six10d14492017-01-11 16:01:00 +010041 CPU_TARGET_SATA23_DFX = 0xe, /* A38X */
Stefan Roese93e6bf42014-10-22 12:13:17 +020042};
43
44enum 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 Roesebca3d862016-02-12 13:52:16 +010052 CPU_ATTR_SPI0_CS0 = 0x1e,
53 CPU_ATTR_SPI0_CS1 = 0x5e,
54 CPU_ATTR_SPI1_CS2 = 0x9a,
Stefan Roese93e6bf42014-10-22 12:13:17 +020055 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 Roese10fa44b2018-10-22 14:21:17 +020064#define MVEBU_SDRAM_SIZE_MAX 0xc0000000
65
Stefan Roese93e6bf42014-10-22 12:13:17 +020066/*
67 * Default Device Address MAP BAR values
68 */
Pali Rohár2d26ac12023-02-03 22:26:37 +010069#ifdef CONFIG_SPL_BUILD
70#ifdef CONFIG_ARMADA_38X
71#define MBUS_PCI_MEM_BASE 0x88000000
72#define MBUS_PCI_MEM_SIZE ((3 * 128) << 20)
73#else
74#define MBUS_PCI_MEM_BASE 0x80000000
75#define MBUS_PCI_MEM_SIZE ((4 * 128) << 20)
76#endif
77#else
Pali Rohárca69af42021-12-21 12:20:13 +010078#define MBUS_PCI_MAX_PORTS 6
Stefan Roese10fa44b2018-10-22 14:21:17 +020079#define MBUS_PCI_MEM_BASE MVEBU_SDRAM_SIZE_MAX
Pali Rohárca69af42021-12-21 12:20:13 +010080#define MBUS_PCI_MEM_SIZE ((MBUS_PCI_MAX_PORTS * 128) << 20)
Stefan Roese13b109f2015-07-01 12:55:07 +020081#define MBUS_PCI_IO_BASE 0xF1100000
Pali Rohárca69af42021-12-21 12:20:13 +010082#define MBUS_PCI_IO_SIZE ((MBUS_PCI_MAX_PORTS * 64) << 10)
Pali Rohár2d26ac12023-02-03 22:26:37 +010083#endif
Pali Rohár465ecee2023-02-03 21:41:45 +010084#ifdef CONFIG_SPL_BUILD
85#define MBUS_SPI_BASE 0xD4000000
86#define MBUS_SPI_SIZE (64 << 20)
87#else
Stefan Roese13b109f2015-07-01 12:55:07 +020088#define MBUS_SPI_BASE 0xF4000000
89#define MBUS_SPI_SIZE (8 << 20)
Pali Rohár465ecee2023-02-03 21:41:45 +010090#endif
Pali Rohár2d26ac12023-02-03 22:26:37 +010091#ifndef CONFIG_SPL_BUILD
Chris Packhama8f845e2019-04-11 22:22:50 +120092#define MBUS_DFX_BASE 0xF6000000
93#define MBUS_DFX_SIZE (1 << 20)
Pali Rohár2d26ac12023-02-03 22:26:37 +010094#endif
Stefan Roese13b109f2015-07-01 12:55:07 +020095#define MBUS_BOOTROM_BASE 0xF8000000
Pali Rohár2d26ac12023-02-03 22:26:37 +010096#ifdef CONFIG_SPL_BUILD
97#define MBUS_BOOTROM_SIZE (128 << 20)
98#else
Stefan Roese13b109f2015-07-01 12:55:07 +020099#define MBUS_BOOTROM_SIZE (8 << 20)
Pali Rohár2d26ac12023-02-03 22:26:37 +0100100#endif
Stefan Roese93e6bf42014-10-22 12:13:17 +0200101
102struct mbus_win {
103 u32 base;
104 u32 size;
105 u8 target;
106 u8 attr;
107};
108
109/*
110 * System registers
111 * Ref: Datasheet sec:A.28
112 */
113struct mvebu_system_registers {
Stefan Roese479f9af2016-02-10 07:23:00 +0100114#if defined(CONFIG_ARMADA_375)
115 u8 pad1[0x54];
116#else
Stefan Roese93e6bf42014-10-22 12:13:17 +0200117 u8 pad1[0x60];
Stefan Roese479f9af2016-02-10 07:23:00 +0100118#endif
Stefan Roese93e6bf42014-10-22 12:13:17 +0200119 u32 rstoutn_mask; /* 0x60 */
120 u32 sys_soft_rst; /* 0x64 */
121};
122
123/*
124 * GPIO Registers
125 * Ref: Datasheet sec:A.19
126 */
127struct kwgpio_registers {
128 u32 dout;
129 u32 oe;
130 u32 blink_en;
131 u32 din_pol;
132 u32 din;
133 u32 irq_cause;
134 u32 irq_mask;
135 u32 irq_level;
136};
137
Stefan Roese2a539c82015-12-21 12:36:40 +0100138struct sar_freq_modes {
139 u8 val;
140 u8 ffc; /* Fabric Frequency Configuration */
141 u32 p_clk;
142 u32 nb_clk;
143 u32 d_clk;
144};
145
Stefan Roese93e6bf42014-10-22 12:13:17 +0200146/*
147 * functions
148 */
149unsigned int mvebu_sdram_bar(enum memory_bank bank);
150unsigned int mvebu_sdram_bs(enum memory_bank bank);
151void mvebu_sdram_size_adjust(enum memory_bank bank);
Pali Rohár32301ee2022-09-09 14:41:28 +0200152int mvebu_mbus_probe(const struct mbus_win windows[], int count);
Stefan Roesebadccc32015-07-16 10:40:05 +0200153u32 mvebu_get_nand_clock(void);
Stefan Roesee463bf32015-01-19 11:33:42 +0100154
Pali Rohára59971b2021-07-23 11:14:24 +0200155void __noreturn return_to_bootrom(void);
Stefan Roese99b3ea72015-08-25 13:49:41 +0200156
Pierre Bourdonb9af62d2019-04-11 04:56:58 +0200157#ifndef CONFIG_DM_MMC
Stefan Roesed3e34732015-06-29 14:58:10 +0200158int mv_sdh_init(unsigned long regbase, u32 max_clk, u32 min_clk, u32 quirks);
Pierre Bourdonb9af62d2019-04-11 04:56:58 +0200159#endif
Stefan Roesed3e34732015-06-29 14:58:10 +0200160
Marek Behúnee76b4a2021-08-16 15:19:37 +0200161u32 get_boot_device(void);
162
Stefan Roese2a539c82015-12-21 12:36:40 +0100163void get_sar_freq(struct sar_freq_modes *sar_freq);
164
Stefan Roesee463bf32015-01-19 11:33:42 +0100165/*
166 * Highspeed SERDES PHY config init, ported from bin_hdr
167 * to mainline U-Boot
168 */
169int serdes_phy_config(void);
170
171/*
172 * DDR3 init / training code ported from Marvell bin_hdr. Now
173 * available in mainline U-Boot in:
Stefan Roeseeb753e92015-03-25 12:51:18 +0100174 * drivers/ddr/marvell
Stefan Roesee463bf32015-01-19 11:33:42 +0100175 */
176int ddr3_init(void);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100177
Baruch Siach056e1072019-07-10 18:23:04 +0300178/* Auto Voltage Scaling */
Pali Rohár9a365e32021-03-05 15:52:42 +0100179#if defined(CONFIG_ARMADA_38X)
Baruch Siach056e1072019-07-10 18:23:04 +0300180void mv_avs_init(void);
Chris Packham3667bec2020-02-26 19:53:50 +1300181void mv_rtc_config(void);
Baruch Siach056e1072019-07-10 18:23:04 +0300182#else
183static inline void mv_avs_init(void) {}
Chris Packham3667bec2020-02-26 19:53:50 +1300184static inline void mv_rtc_config(void) {}
Baruch Siach056e1072019-07-10 18:23:04 +0300185#endif
186
Marek Behúne577cc32020-04-08 19:25:18 +0200187/* A8K dram functions */
188u64 a8k_dram_scan_ap_sz(void);
189int a8k_dram_init_banksize(void);
190
Marek Behúnf9d5e732020-04-08 19:25:19 +0200191/* A3700 dram functions */
192int a3700_dram_init(void);
193int a3700_dram_init_banksize(void);
194
Marek Behún41d2c402020-04-08 19:25:21 +0200195/* A3700 PCIe regions fixer for device tree */
196int a3700_fdt_fix_pcie_regions(void *blob);
197
Chris Packhameaab4612022-11-05 17:23:59 +1300198/* Alleycat5 dram functions */
199int alleycat5_dram_init(void);
200int alleycat5_dram_init_banksize(void);
201
Stefan Roese05b17652016-05-17 15:00:30 +0200202/*
203 * get_ref_clk
204 *
205 * return: reference clock in MHz (25 or 40)
206 */
207u32 get_ref_clk(void);
208
Stefan Roese93e6bf42014-10-22 12:13:17 +0200209#endif /* __ASSEMBLY__ */
Stefan Roeseebda3ec2015-04-25 06:29:47 +0200210#endif /* _MVEBU_CPU_H */