blob: b67b77ae0df424266049a5f49dc138d28f13a714 [file] [log] [blame]
Stefan Roese93e6bf42014-10-22 12:13:17 +02001/*
2 * (C) Copyright 2009
3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
Stefan Roeseebda3ec2015-04-25 06:29:47 +02009#ifndef _MVEBU_CPU_H
10#define _MVEBU_CPU_H
Stefan Roese93e6bf42014-10-22 12:13:17 +020011
12#include <asm/system.h>
13
14#ifndef __ASSEMBLY__
15
16#define MVEBU_REG_PCIE_DEVID (MVEBU_REG_PCIE_BASE + 0x00)
17#define MVEBU_REG_PCIE_REVID (MVEBU_REG_PCIE_BASE + 0x08)
18
19enum memory_bank {
20 BANK0,
21 BANK1,
22 BANK2,
23 BANK3
24};
25
26enum cpu_winen {
27 CPU_WIN_DISABLE,
28 CPU_WIN_ENABLE
29};
30
31enum cpu_target {
32 CPU_TARGET_DRAM = 0x0,
33 CPU_TARGET_DEVICEBUS_BOOTROM_SPI = 0x1,
34 CPU_TARGET_ETH23 = 0x3,
35 CPU_TARGET_PCIE02 = 0x4,
36 CPU_TARGET_ETH01 = 0x7,
37 CPU_TARGET_PCIE13 = 0x8,
38 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 Roese174d23e2015-04-25 06:29:51 +020064enum {
65 MVEBU_SOC_AXP,
Stefan Roese479f9af2016-02-10 07:23:00 +010066 MVEBU_SOC_A375,
Stefan Roese174d23e2015-04-25 06:29:51 +020067 MVEBU_SOC_A38X,
Chris Packham348109d2017-09-04 17:38:31 +120068 MVEBU_SOC_MSYS,
Stefan Roese174d23e2015-04-25 06:29:51 +020069 MVEBU_SOC_UNKNOWN,
70};
71
Stefan Roese93e6bf42014-10-22 12:13:17 +020072/*
73 * Default Device Address MAP BAR values
74 */
Stefan Roese13b109f2015-07-01 12:55:07 +020075#define MBUS_PCI_MEM_BASE 0xE8000000
76#define MBUS_PCI_MEM_SIZE (128 << 20)
77#define MBUS_PCI_IO_BASE 0xF1100000
78#define MBUS_PCI_IO_SIZE (64 << 10)
79#define MBUS_SPI_BASE 0xF4000000
80#define MBUS_SPI_SIZE (8 << 20)
81#define MBUS_BOOTROM_BASE 0xF8000000
82#define MBUS_BOOTROM_SIZE (8 << 20)
Stefan Roese93e6bf42014-10-22 12:13:17 +020083
84struct mbus_win {
85 u32 base;
86 u32 size;
87 u8 target;
88 u8 attr;
89};
90
91/*
92 * System registers
93 * Ref: Datasheet sec:A.28
94 */
95struct mvebu_system_registers {
Stefan Roese479f9af2016-02-10 07:23:00 +010096#if defined(CONFIG_ARMADA_375)
97 u8 pad1[0x54];
98#else
Stefan Roese93e6bf42014-10-22 12:13:17 +020099 u8 pad1[0x60];
Stefan Roese479f9af2016-02-10 07:23:00 +0100100#endif
Stefan Roese93e6bf42014-10-22 12:13:17 +0200101 u32 rstoutn_mask; /* 0x60 */
102 u32 sys_soft_rst; /* 0x64 */
103};
104
105/*
106 * GPIO Registers
107 * Ref: Datasheet sec:A.19
108 */
109struct kwgpio_registers {
110 u32 dout;
111 u32 oe;
112 u32 blink_en;
113 u32 din_pol;
114 u32 din;
115 u32 irq_cause;
116 u32 irq_mask;
117 u32 irq_level;
118};
119
Stefan Roese2a539c82015-12-21 12:36:40 +0100120struct sar_freq_modes {
121 u8 val;
122 u8 ffc; /* Fabric Frequency Configuration */
123 u32 p_clk;
124 u32 nb_clk;
125 u32 d_clk;
126};
127
Stefan Roese1a16a0c2015-01-19 11:33:47 +0100128/* Needed for dynamic (board-specific) mbus configuration */
129extern struct mvebu_mbus_state mbus_state;
130
Stefan Roese93e6bf42014-10-22 12:13:17 +0200131/*
132 * functions
133 */
134unsigned int mvebu_sdram_bar(enum memory_bank bank);
135unsigned int mvebu_sdram_bs(enum memory_bank bank);
136void mvebu_sdram_size_adjust(enum memory_bank bank);
137int mvebu_mbus_probe(struct mbus_win windows[], int count);
Stefan Roese174d23e2015-04-25 06:29:51 +0200138int mvebu_soc_family(void);
Stefan Roesebadccc32015-07-16 10:40:05 +0200139u32 mvebu_get_nand_clock(void);
Stefan Roesee463bf32015-01-19 11:33:42 +0100140
Stefan Roese99b3ea72015-08-25 13:49:41 +0200141void return_to_bootrom(void);
142
Stefan Roesed3e34732015-06-29 14:58:10 +0200143int mv_sdh_init(unsigned long regbase, u32 max_clk, u32 min_clk, u32 quirks);
144
Stefan Roese2a539c82015-12-21 12:36:40 +0100145void get_sar_freq(struct sar_freq_modes *sar_freq);
146
Stefan Roesee463bf32015-01-19 11:33:42 +0100147/*
148 * Highspeed SERDES PHY config init, ported from bin_hdr
149 * to mainline U-Boot
150 */
151int serdes_phy_config(void);
152
153/*
154 * DDR3 init / training code ported from Marvell bin_hdr. Now
155 * available in mainline U-Boot in:
Stefan Roeseeb753e92015-03-25 12:51:18 +0100156 * drivers/ddr/marvell
Stefan Roesee463bf32015-01-19 11:33:42 +0100157 */
158int ddr3_init(void);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100159
160struct mvebu_lcd_info {
161 u32 fb_base;
162 int x_res;
163 int y_res;
164 int x_fp; /* frontporch */
165 int y_fp;
166 int x_bp; /* backporch */
167 int y_bp;
168};
169
170int mvebu_lcd_register_init(struct mvebu_lcd_info *lcd_info);
171
Stefan Roese05b17652016-05-17 15:00:30 +0200172/*
173 * get_ref_clk
174 *
175 * return: reference clock in MHz (25 or 40)
176 */
177u32 get_ref_clk(void);
178
Stefan Roese93e6bf42014-10-22 12:13:17 +0200179#endif /* __ASSEMBLY__ */
Stefan Roeseebda3ec2015-04-25 06:29:47 +0200180#endif /* _MVEBU_CPU_H */