blob: ba453a70248d6ffe3a70528b5b338b760fbd1085 [file] [log] [blame]
Michal Simek59c651f2013-02-04 12:38:59 +01001/*
2 * Copyright (c) 2013 Xilinx Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Michal Simek59c651f2013-02-04 12:38:59 +01005 */
6
7#include <common.h>
8#include <asm/io.h>
9#include <malloc.h>
10#include <asm/arch/hardware.h>
Michal Simek3b5b5992014-04-25 13:48:08 +020011#include <asm/arch/sys_proto.h>
Michal Simek59c651f2013-02-04 12:38:59 +010012
13#define SLCR_LOCK_MAGIC 0x767B
14#define SLCR_UNLOCK_MAGIC 0xDF0D
15
Michal Simekcde28c82016-10-26 10:49:37 +020016#define SLCR_NAND_L2_SEL 0x10
17#define SLCR_NAND_L2_SEL_MASK 0x1F
18
Michal Simekeb8c54b2014-04-25 12:21:04 +020019#define SLCR_USB_L1_SEL 0x04
20
Michal Simekd5dae852013-04-22 15:43:02 +020021#define SLCR_IDCODE_MASK 0x1F000
22#define SLCR_IDCODE_SHIFT 12
23
Michal Simek3cc3fa82014-04-25 12:21:04 +020024/*
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
Michal Simekcde28c82016-10-26 10:49:37 +020041static 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
Michal Simekeb8c54b2014-04-25 12:21:04 +020049static 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
Michal Simek3cc3fa82014-04-25 12:21:04 +020057static const struct zynq_slcr_mio_get_status mio_periphs[] = {
Michal Simekeb8c54b2014-04-25 12:21:04 +020058 {
Michal Simekcde28c82016-10-26 10:49:37 +020059 "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 },
72 {
Michal Simekeb8c54b2014-04-25 12:21:04 +020073 "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 },
Michal Simek3cc3fa82014-04-25 12:21:04 +020086};
87
Michal Simek59c651f2013-02-04 12:38:59 +010088static int slcr_lock = 1; /* 1 means locked, 0 means unlocked */
89
90void zynq_slcr_lock(void)
91{
Michal Simek2da7a742013-08-30 07:26:08 +020092 if (!slcr_lock) {
Michal Simek59c651f2013-02-04 12:38:59 +010093 writel(SLCR_LOCK_MAGIC, &slcr_base->slcr_lock);
Michal Simek2da7a742013-08-30 07:26:08 +020094 slcr_lock = 1;
95 }
Michal Simek59c651f2013-02-04 12:38:59 +010096}
97
98void zynq_slcr_unlock(void)
99{
Michal Simek2da7a742013-08-30 07:26:08 +0200100 if (slcr_lock) {
Michal Simek59c651f2013-02-04 12:38:59 +0100101 writel(SLCR_UNLOCK_MAGIC, &slcr_base->slcr_unlock);
Michal Simek2da7a742013-08-30 07:26:08 +0200102 slcr_lock = 0;
103 }
Michal Simek59c651f2013-02-04 12:38:59 +0100104}
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}
Michal Simek80243522012-10-15 14:01:23 +0200125
Michal Simekd5dae852013-04-22 15:43:02 +0200126void zynq_slcr_devcfg_disable(void)
127{
Siva Durga Prasad Paladuguf25f5522015-03-02 16:03:46 +0530128 u32 reg_val;
129
Michal Simekd5dae852013-04-22 15:43:02 +0200130 zynq_slcr_unlock();
131
Michal Simek6e047692014-03-27 10:06:43 +0100132 /* Disable AXI interface by asserting FPGA resets */
Siva Durga Prasad Paladuguf60c6fb2014-10-28 11:22:19 +0530133 writel(0xF, &slcr_base->fpga_rst_ctrl);
Michal Simekd5dae852013-04-22 15:43:02 +0200134
Siva Durga Prasad Paladuguf25f5522015-03-02 16:03:46 +0530135 /* 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
Michal Simekd5dae852013-04-22 15:43:02 +0200140 /* 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
Michal Simek6e047692014-03-27 10:06:43 +0100153 /* Enable AXI interface by de-asserting FPGA resets */
Michal Simekd5dae852013-04-22 15:43:02 +0200154 writel(0x0, &slcr_base->fpga_rst_ctrl);
155
156 zynq_slcr_lock();
157}
158
Jagannadha Sutradharudu Tekib3de9242014-01-09 01:48:21 +0530159u32 zynq_slcr_get_boot_mode(void)
160{
161 /* Get the bootmode register value */
162 return readl(&slcr_base->boot_mode);
163}
164
Michal Simekd5dae852013-04-22 15:43:02 +0200165u32 zynq_slcr_get_idcode(void)
166{
167 return (readl(&slcr_base->pss_idcode) & SLCR_IDCODE_MASK) >>
168 SLCR_IDCODE_SHIFT;
169}
Michal Simek3cc3fa82014-04-25 12:21:04 +0200170
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;
Michal Simek30829442017-11-10 13:28:07 +0100182 int val, j;
Michal Simek3cc3fa82014-04-25 12:21:04 +0200183 int mio = 0;
Michal Simek30829442017-11-10 13:28:07 +0100184 u32 i;
Michal Simek3cc3fa82014-04-25 12:21:04 +0200185
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}