blob: 5412ed682797b5d145922602eade65194dce36fe [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Michal Simekeb1dfa72013-02-04 12:38:59 +01002/*
3 * Copyright (c) 2013 Xilinx Inc.
Michal Simekeb1dfa72013-02-04 12:38:59 +01004 */
5
6#ifndef _ASM_ARCH_HARDWARE_H
7#define _ASM_ARCH_HARDWARE_H
8
Michal Simekb0bf9552013-04-23 11:35:18 +02009#define ZYNQ_SYS_CTRL_BASEADDR 0xF8000000
10#define ZYNQ_DEV_CFG_APB_BASEADDR 0xF8007000
11#define ZYNQ_SCU_BASEADDR 0xF8F00000
Michal Simekcbd73b82015-01-13 16:05:19 +010012#define ZYNQ_QSPI_BASEADDR 0xE000D000
13#define ZYNQ_SMC_BASEADDR 0xE000E000
14#define ZYNQ_NAND_BASEADDR 0xE1000000
Michal Simekf5ff7bc2013-06-17 14:37:01 +020015#define ZYNQ_DDRC_BASEADDR 0xF8006000
Siva Durga Prasad Paladugue26ef3b2013-11-29 19:01:25 +053016#define ZYNQ_EFUSE_BASEADDR 0xF800D000
Michal Simekec028202014-04-25 12:21:04 +020017#define ZYNQ_USB_BASEADDR0 0xE0002000
18#define ZYNQ_USB_BASEADDR1 0xE0003000
Siva Durga Prasad Paladugue4603522018-06-26 15:02:19 +053019#define ZYNQ_OCM_BASEADDR 0xFFFC0000
Michal Simekeb1dfa72013-02-04 12:38:59 +010020
Michal Simekf0c82112014-01-16 09:18:21 +010021/* Bootmode setting values */
Mike Looijmansdb49c132014-03-06 14:43:36 +010022#define ZYNQ_BM_MASK 0x7
Michal Simek25830022015-01-13 16:04:10 +010023#define ZYNQ_BM_QSPI 0x1
Michal Simekf0c82112014-01-16 09:18:21 +010024#define ZYNQ_BM_NOR 0x2
Michal Simek25830022015-01-13 16:04:10 +010025#define ZYNQ_BM_NAND 0x4
Michal Simekf0c82112014-01-16 09:18:21 +010026#define ZYNQ_BM_SD 0x5
27#define ZYNQ_BM_JTAG 0x0
28
Michal Simekeb1dfa72013-02-04 12:38:59 +010029/* Reflect slcr offsets */
30struct slcr_regs {
31 u32 scl; /* 0x0 */
32 u32 slcr_lock; /* 0x4 */
33 u32 slcr_unlock; /* 0x8 */
Soren Brinkmann102ad002013-11-21 13:38:54 -080034 u32 reserved0_1[61];
35 u32 arm_pll_ctrl; /* 0x100 */
36 u32 ddr_pll_ctrl; /* 0x104 */
37 u32 io_pll_ctrl; /* 0x108 */
38 u32 reserved0_2[5];
39 u32 arm_clk_ctrl; /* 0x120 */
40 u32 ddr_clk_ctrl; /* 0x124 */
41 u32 dci_clk_ctrl; /* 0x128 */
42 u32 aper_clk_ctrl; /* 0x12c */
43 u32 reserved0_3[2];
Michal Simekd9f2c112012-10-15 14:01:23 +020044 u32 gem0_rclk_ctrl; /* 0x138 */
45 u32 gem1_rclk_ctrl; /* 0x13c */
46 u32 gem0_clk_ctrl; /* 0x140 */
47 u32 gem1_clk_ctrl; /* 0x144 */
Soren Brinkmann102ad002013-11-21 13:38:54 -080048 u32 smc_clk_ctrl; /* 0x148 */
49 u32 lqspi_clk_ctrl; /* 0x14c */
50 u32 sdio_clk_ctrl; /* 0x150 */
51 u32 uart_clk_ctrl; /* 0x154 */
52 u32 spi_clk_ctrl; /* 0x158 */
53 u32 can_clk_ctrl; /* 0x15c */
54 u32 can_mioclk_ctrl; /* 0x160 */
55 u32 dbg_clk_ctrl; /* 0x164 */
56 u32 pcap_clk_ctrl; /* 0x168 */
57 u32 reserved0_4[1];
58 u32 fpga0_clk_ctrl; /* 0x170 */
59 u32 reserved0_5[3];
60 u32 fpga1_clk_ctrl; /* 0x180 */
61 u32 reserved0_6[3];
62 u32 fpga2_clk_ctrl; /* 0x190 */
63 u32 reserved0_7[3];
64 u32 fpga3_clk_ctrl; /* 0x1a0 */
65 u32 reserved0_8[8];
66 u32 clk_621_true; /* 0x1c4 */
67 u32 reserved1[14];
Michal Simekeb1dfa72013-02-04 12:38:59 +010068 u32 pss_rst_ctrl; /* 0x200 */
Michal Simek6d464802013-02-04 12:42:25 +010069 u32 reserved2[15];
70 u32 fpga_rst_ctrl; /* 0x240 */
71 u32 reserved3[5];
Michal Simekeb1dfa72013-02-04 12:38:59 +010072 u32 reboot_status; /* 0x258 */
Michal Simek6d464802013-02-04 12:42:25 +010073 u32 boot_mode; /* 0x25c */
74 u32 reserved4[116];
75 u32 trust_zone; /* 0x430 */ /* FIXME */
Michal Simek15d654c2013-04-22 15:43:02 +020076 u32 reserved5_1[63];
77 u32 pss_idcode; /* 0x530 */
78 u32 reserved5_2[51];
Michal Simek6d464802013-02-04 12:42:25 +010079 u32 ddr_urgent; /* 0x600 */
80 u32 reserved6[6];
81 u32 ddr_urgent_sel; /* 0x61c */
Michal Simek15d654c2013-04-22 15:43:02 +020082 u32 reserved7[56];
83 u32 mio_pin[54]; /* 0x700 - 0x7D4 */
84 u32 reserved8[74];
85 u32 lvl_shftr_en; /* 0x900 */
86 u32 reserved9[3];
Michal Simek6d464802013-02-04 12:42:25 +010087 u32 ocm_cfg; /* 0x910 */
Michal Simekeb1dfa72013-02-04 12:38:59 +010088};
89
Michal Simekb0bf9552013-04-23 11:35:18 +020090#define slcr_base ((struct slcr_regs *)ZYNQ_SYS_CTRL_BASEADDR)
Michal Simekeb1dfa72013-02-04 12:38:59 +010091
Michal Simek6d464802013-02-04 12:42:25 +010092struct devcfg_regs {
93 u32 ctrl; /* 0x0 */
94 u32 lock; /* 0x4 */
95 u32 cfg; /* 0x8 */
96 u32 int_sts; /* 0xc */
97 u32 int_mask; /* 0x10 */
98 u32 status; /* 0x14 */
99 u32 dma_src_addr; /* 0x18 */
100 u32 dma_dst_addr; /* 0x1c */
101 u32 dma_src_len; /* 0x20 */
102 u32 dma_dst_len; /* 0x24 */
103 u32 rom_shadow; /* 0x28 */
104 u32 reserved1[2];
105 u32 unlock; /* 0x34 */
106 u32 reserved2[18];
107 u32 mctrl; /* 0x80 */
108 u32 reserved3;
109 u32 write_count; /* 0x88 */
110 u32 read_count; /* 0x8c */
111};
112
Michal Simekb0bf9552013-04-23 11:35:18 +0200113#define devcfg_base ((struct devcfg_regs *)ZYNQ_DEV_CFG_APB_BASEADDR)
Michal Simek6d464802013-02-04 12:42:25 +0100114
115struct scu_regs {
116 u32 reserved1[16];
117 u32 filter_start; /* 0x40 */
118 u32 filter_end; /* 0x44 */
119};
120
Michal Simekb0bf9552013-04-23 11:35:18 +0200121#define scu_base ((struct scu_regs *)ZYNQ_SCU_BASEADDR)
Michal Simek6d464802013-02-04 12:42:25 +0100122
Michal Simekf5ff7bc2013-06-17 14:37:01 +0200123struct ddrc_regs {
124 u32 ddrc_ctrl; /* 0x0 */
125 u32 reserved[60];
126 u32 ecc_scrub; /* 0xF4 */
127};
128#define ddrc_base ((struct ddrc_regs *)ZYNQ_DDRC_BASEADDR)
129
Siva Durga Prasad Paladugue26ef3b2013-11-29 19:01:25 +0530130struct efuse_reg {
131 u32 reserved1[4];
132 u32 status;
133 u32 reserved2[3];
134};
135
136#define efuse_base ((struct efuse_reg *)ZYNQ_EFUSE_BASEADDR)
137
Michal Simekeb1dfa72013-02-04 12:38:59 +0100138#endif /* _ASM_ARCH_HARDWARE_H */