blob: ef877df0fe85125dfc9ab399ccc67d2dd0e413a8 [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/*
Michal Simek98d0f1f2018-01-17 07:37:47 +01003 * Copyright (c) 2013 - 2017 Xilinx Inc.
Michal Simekeb1dfa72013-02-04 12:38:59 +01004 */
5
Michal Simekeb1dfa72013-02-04 12:38:59 +01006#include <asm/io.h>
7#include <malloc.h>
8#include <asm/arch/hardware.h>
Michal Simek90b80642014-04-25 13:48:08 +02009#include <asm/arch/sys_proto.h>
Michal Simekeb1dfa72013-02-04 12:38:59 +010010
11#define SLCR_LOCK_MAGIC 0x767B
12#define SLCR_UNLOCK_MAGIC 0xDF0D
13
Michal Simek42e942f2016-10-26 10:49:37 +020014#define SLCR_NAND_L2_SEL 0x10
15#define SLCR_NAND_L2_SEL_MASK 0x1F
16
Michal Simekec028202014-04-25 12:21:04 +020017#define SLCR_USB_L1_SEL 0x04
18
Michal Simek15d654c2013-04-22 15:43:02 +020019#define SLCR_IDCODE_MASK 0x1F000
20#define SLCR_IDCODE_SHIFT 12
21
Michal Simek8d191622014-04-25 12:21:04 +020022/*
23 * zynq_slcr_mio_get_status - Get the status of MIO peripheral.
24 *
25 * @peri_name: Name of the peripheral for checking MIO status
26 * @get_pins: Pointer to array of get pin for this peripheral
27 * @num_pins: Number of pins for this peripheral
28 * @mask: Mask value
29 * @check_val: Required check value to get the status of periph
30 */
31struct zynq_slcr_mio_get_status {
32 const char *peri_name;
33 const int *get_pins;
34 int num_pins;
35 u32 mask;
36 u32 check_val;
37};
38
Michal Simek42e942f2016-10-26 10:49:37 +020039static const int nand8_pins[] = {
40 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13
41};
42
43static const int nand16_pins[] = {
44 16, 17, 18, 19, 20, 21, 22, 23
45};
46
Michal Simekec028202014-04-25 12:21:04 +020047static const int usb0_pins[] = {
48 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39
49};
50
51static const int usb1_pins[] = {
52 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
53};
54
Michal Simek8d191622014-04-25 12:21:04 +020055static const struct zynq_slcr_mio_get_status mio_periphs[] = {
Michal Simekec028202014-04-25 12:21:04 +020056 {
Michal Simek42e942f2016-10-26 10:49:37 +020057 "nand8",
58 nand8_pins,
59 ARRAY_SIZE(nand8_pins),
60 SLCR_NAND_L2_SEL_MASK,
61 SLCR_NAND_L2_SEL,
62 },
63 {
64 "nand16",
65 nand16_pins,
66 ARRAY_SIZE(nand16_pins),
67 SLCR_NAND_L2_SEL_MASK,
68 SLCR_NAND_L2_SEL,
69 },
70 {
Michal Simekec028202014-04-25 12:21:04 +020071 "usb0",
72 usb0_pins,
73 ARRAY_SIZE(usb0_pins),
74 SLCR_USB_L1_SEL,
75 SLCR_USB_L1_SEL,
76 },
77 {
78 "usb1",
79 usb1_pins,
80 ARRAY_SIZE(usb1_pins),
81 SLCR_USB_L1_SEL,
82 SLCR_USB_L1_SEL,
83 },
Michal Simek8d191622014-04-25 12:21:04 +020084};
85
Michal Simekeb1dfa72013-02-04 12:38:59 +010086static int slcr_lock = 1; /* 1 means locked, 0 means unlocked */
87
88void zynq_slcr_lock(void)
89{
Michal Simekbc733042013-08-30 07:26:08 +020090 if (!slcr_lock) {
Michal Simekeb1dfa72013-02-04 12:38:59 +010091 writel(SLCR_LOCK_MAGIC, &slcr_base->slcr_lock);
Michal Simekbc733042013-08-30 07:26:08 +020092 slcr_lock = 1;
93 }
Michal Simekeb1dfa72013-02-04 12:38:59 +010094}
95
96void zynq_slcr_unlock(void)
97{
Michal Simekbc733042013-08-30 07:26:08 +020098 if (slcr_lock) {
Michal Simekeb1dfa72013-02-04 12:38:59 +010099 writel(SLCR_UNLOCK_MAGIC, &slcr_base->slcr_unlock);
Michal Simekbc733042013-08-30 07:26:08 +0200100 slcr_lock = 0;
101 }
Michal Simekeb1dfa72013-02-04 12:38:59 +0100102}
103
104/* Reset the entire system */
105void zynq_slcr_cpu_reset(void)
106{
107 /*
108 * Unlock the SLCR then reset the system.
109 * Note that this seems to require raw i/o
110 * functions or there's a lockup?
111 */
112 zynq_slcr_unlock();
113
114 /*
115 * Clear 0x0F000000 bits of reboot status register to workaround
116 * the FSBL not loading the bitstream after soft-reboot
117 * This is a temporary solution until we know more.
118 */
119 clrbits_le32(&slcr_base->reboot_status, 0xF000000);
120
121 writel(1, &slcr_base->pss_rst_ctrl);
122}
Michal Simekd9f2c112012-10-15 14:01:23 +0200123
Michal Simek15d654c2013-04-22 15:43:02 +0200124void zynq_slcr_devcfg_disable(void)
125{
Siva Durga Prasad Paladugube0bf692015-03-02 16:03:46 +0530126 u32 reg_val;
127
Michal Simek15d654c2013-04-22 15:43:02 +0200128 zynq_slcr_unlock();
129
Michal Simek7cffeb02014-03-27 10:06:43 +0100130 /* Disable AXI interface by asserting FPGA resets */
Siva Durga Prasad Paladugu250e6052014-10-28 11:22:19 +0530131 writel(0xF, &slcr_base->fpga_rst_ctrl);
Michal Simek15d654c2013-04-22 15:43:02 +0200132
Siva Durga Prasad Paladugube0bf692015-03-02 16:03:46 +0530133 /* Disable Level shifters before setting PS-PL */
134 reg_val = readl(&slcr_base->lvl_shftr_en);
135 reg_val &= ~0xF;
136 writel(reg_val, &slcr_base->lvl_shftr_en);
137
Michal Simek15d654c2013-04-22 15:43:02 +0200138 /* Set Level Shifters DT618760 */
139 writel(0xA, &slcr_base->lvl_shftr_en);
140
141 zynq_slcr_lock();
142}
143
144void zynq_slcr_devcfg_enable(void)
145{
146 zynq_slcr_unlock();
147
148 /* Set Level Shifters DT618760 */
149 writel(0xF, &slcr_base->lvl_shftr_en);
150
Michal Simek7cffeb02014-03-27 10:06:43 +0100151 /* Enable AXI interface by de-asserting FPGA resets */
Michal Simek15d654c2013-04-22 15:43:02 +0200152 writel(0x0, &slcr_base->fpga_rst_ctrl);
153
154 zynq_slcr_lock();
155}
156
Jagannadha Sutradharudu Teki11704c22014-01-09 01:48:21 +0530157u32 zynq_slcr_get_boot_mode(void)
158{
159 /* Get the bootmode register value */
160 return readl(&slcr_base->boot_mode);
161}
162
Michal Simek15d654c2013-04-22 15:43:02 +0200163u32 zynq_slcr_get_idcode(void)
164{
165 return (readl(&slcr_base->pss_idcode) & SLCR_IDCODE_MASK) >>
166 SLCR_IDCODE_SHIFT;
167}
Michal Simek8d191622014-04-25 12:21:04 +0200168
169/*
170 * zynq_slcr_get_mio_pin_status - Get the MIO pin status of peripheral.
171 *
172 * @periph: Name of the peripheral
173 *
174 * Returns count to indicate the number of pins configured for the
175 * given @periph.
176 */
177int zynq_slcr_get_mio_pin_status(const char *periph)
178{
179 const struct zynq_slcr_mio_get_status *mio_ptr;
Michal Simekfb6cfdc2017-11-10 13:28:07 +0100180 int val, j;
Michal Simek8d191622014-04-25 12:21:04 +0200181 int mio = 0;
Michal Simekfb6cfdc2017-11-10 13:28:07 +0100182 u32 i;
Michal Simek8d191622014-04-25 12:21:04 +0200183
184 for (i = 0; i < ARRAY_SIZE(mio_periphs); i++) {
185 if (strcmp(periph, mio_periphs[i].peri_name) == 0) {
186 mio_ptr = &mio_periphs[i];
187 for (j = 0; j < mio_ptr->num_pins; j++) {
188 val = readl(&slcr_base->mio_pin
189 [mio_ptr->get_pins[j]]);
190 if ((val & mio_ptr->mask) == mio_ptr->check_val)
191 mio++;
192 }
193 break;
194 }
195 }
196
197 return mio;
198}