]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-zynq/slcr.c
Merge git://git.denx.de/u-boot-sunxi
[people/ms/u-boot.git] / arch / arm / mach-zynq / slcr.c
CommitLineData
59c651f4
MS
1/*
2 * Copyright (c) 2013 Xilinx Inc.
3 *
1a459660 4 * SPDX-License-Identifier: GPL-2.0+
59c651f4
MS
5 */
6
7#include <common.h>
8#include <asm/io.h>
9#include <malloc.h>
10#include <asm/arch/hardware.h>
3b5b599f 11#include <asm/arch/sys_proto.h>
59c651f4
MS
12
13#define SLCR_LOCK_MAGIC 0x767B
14#define SLCR_UNLOCK_MAGIC 0xDF0D
15
cde28c81
MS
16#define SLCR_NAND_L2_SEL 0x10
17#define SLCR_NAND_L2_SEL_MASK 0x1F
18
eb8c54bf
MS
19#define SLCR_USB_L1_SEL 0x04
20
d5dae85f
MS
21#define SLCR_IDCODE_MASK 0x1F000
22#define SLCR_IDCODE_SHIFT 12
23
3cc3fa86
MS
24/*
25 * zynq_slcr_mio_get_status - Get the status of MIO peripheral.
26 *
27 * @peri_name: Name of the peripheral for checking MIO status
28 * @get_pins: Pointer to array of get pin for this peripheral
29 * @num_pins: Number of pins for this peripheral
30 * @mask: Mask value
31 * @check_val: Required check value to get the status of periph
32 */
33struct zynq_slcr_mio_get_status {
34 const char *peri_name;
35 const int *get_pins;
36 int num_pins;
37 u32 mask;
38 u32 check_val;
39};
40
cde28c81
MS
41static const int nand8_pins[] = {
42 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13
43};
44
45static const int nand16_pins[] = {
46 16, 17, 18, 19, 20, 21, 22, 23
47};
48
eb8c54bf
MS
49static const int usb0_pins[] = {
50 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39
51};
52
53static const int usb1_pins[] = {
54 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
55};
56
3cc3fa86 57static const struct zynq_slcr_mio_get_status mio_periphs[] = {
cde28c81
MS
58 {
59 "nand8",
60 nand8_pins,
61 ARRAY_SIZE(nand8_pins),
62 SLCR_NAND_L2_SEL_MASK,
63 SLCR_NAND_L2_SEL,
64 },
65 {
66 "nand16",
67 nand16_pins,
68 ARRAY_SIZE(nand16_pins),
69 SLCR_NAND_L2_SEL_MASK,
70 SLCR_NAND_L2_SEL,
71 },
eb8c54bf
MS
72 {
73 "usb0",
74 usb0_pins,
75 ARRAY_SIZE(usb0_pins),
76 SLCR_USB_L1_SEL,
77 SLCR_USB_L1_SEL,
78 },
79 {
80 "usb1",
81 usb1_pins,
82 ARRAY_SIZE(usb1_pins),
83 SLCR_USB_L1_SEL,
84 SLCR_USB_L1_SEL,
85 },
3cc3fa86
MS
86};
87
59c651f4
MS
88static int slcr_lock = 1; /* 1 means locked, 0 means unlocked */
89
90void zynq_slcr_lock(void)
91{
2da7a745 92 if (!slcr_lock) {
59c651f4 93 writel(SLCR_LOCK_MAGIC, &slcr_base->slcr_lock);
2da7a745
MS
94 slcr_lock = 1;
95 }
59c651f4
MS
96}
97
98void zynq_slcr_unlock(void)
99{
2da7a745 100 if (slcr_lock) {
59c651f4 101 writel(SLCR_UNLOCK_MAGIC, &slcr_base->slcr_unlock);
2da7a745
MS
102 slcr_lock = 0;
103 }
59c651f4
MS
104}
105
106/* Reset the entire system */
107void zynq_slcr_cpu_reset(void)
108{
109 /*
110 * Unlock the SLCR then reset the system.
111 * Note that this seems to require raw i/o
112 * functions or there's a lockup?
113 */
114 zynq_slcr_unlock();
115
116 /*
117 * Clear 0x0F000000 bits of reboot status register to workaround
118 * the FSBL not loading the bitstream after soft-reboot
119 * This is a temporary solution until we know more.
120 */
121 clrbits_le32(&slcr_base->reboot_status, 0xF000000);
122
123 writel(1, &slcr_base->pss_rst_ctrl);
124}
80243528 125
d5dae85f
MS
126void zynq_slcr_devcfg_disable(void)
127{
f25f552a
SDPP
128 u32 reg_val;
129
d5dae85f
MS
130 zynq_slcr_unlock();
131
6e04769c 132 /* Disable AXI interface by asserting FPGA resets */
f60c6fbb 133 writel(0xF, &slcr_base->fpga_rst_ctrl);
d5dae85f 134
f25f552a
SDPP
135 /* Disable Level shifters before setting PS-PL */
136 reg_val = readl(&slcr_base->lvl_shftr_en);
137 reg_val &= ~0xF;
138 writel(reg_val, &slcr_base->lvl_shftr_en);
139
d5dae85f
MS
140 /* Set Level Shifters DT618760 */
141 writel(0xA, &slcr_base->lvl_shftr_en);
142
143 zynq_slcr_lock();
144}
145
146void zynq_slcr_devcfg_enable(void)
147{
148 zynq_slcr_unlock();
149
150 /* Set Level Shifters DT618760 */
151 writel(0xF, &slcr_base->lvl_shftr_en);
152
6e04769c 153 /* Enable AXI interface by de-asserting FPGA resets */
d5dae85f
MS
154 writel(0x0, &slcr_base->fpga_rst_ctrl);
155
156 zynq_slcr_lock();
157}
158
b3de9249
JT
159u32 zynq_slcr_get_boot_mode(void)
160{
161 /* Get the bootmode register value */
162 return readl(&slcr_base->boot_mode);
163}
164
d5dae85f
MS
165u32 zynq_slcr_get_idcode(void)
166{
167 return (readl(&slcr_base->pss_idcode) & SLCR_IDCODE_MASK) >>
168 SLCR_IDCODE_SHIFT;
169}
3cc3fa86
MS
170
171/*
172 * zynq_slcr_get_mio_pin_status - Get the MIO pin status of peripheral.
173 *
174 * @periph: Name of the peripheral
175 *
176 * Returns count to indicate the number of pins configured for the
177 * given @periph.
178 */
179int zynq_slcr_get_mio_pin_status(const char *periph)
180{
181 const struct zynq_slcr_mio_get_status *mio_ptr;
30829447 182 int val, j;
3cc3fa86 183 int mio = 0;
30829447 184 u32 i;
3cc3fa86
MS
185
186 for (i = 0; i < ARRAY_SIZE(mio_periphs); i++) {
187 if (strcmp(periph, mio_periphs[i].peri_name) == 0) {
188 mio_ptr = &mio_periphs[i];
189 for (j = 0; j < mio_ptr->num_pins; j++) {
190 val = readl(&slcr_base->mio_pin
191 [mio_ptr->get_pins[j]]);
192 if ((val & mio_ptr->mask) == mio_ptr->check_val)
193 mio++;
194 }
195 break;
196 }
197 }
198
199 return mio;
200}