blob: 934ccc31c86fd80723afa6c89be03c5651600cb9 [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>
Soren Brinkmann97598fc2013-11-21 13:39:01 -080012#include <asm/arch/clk.h>
Michal Simek59c651f2013-02-04 12:38:59 +010013
14#define SLCR_LOCK_MAGIC 0x767B
15#define SLCR_UNLOCK_MAGIC 0xDF0D
16
Michal Simekeb8c54b2014-04-25 12:21:04 +020017#define SLCR_USB_L1_SEL 0x04
18
Michal Simekd5dae852013-04-22 15:43:02 +020019#define SLCR_IDCODE_MASK 0x1F000
20#define SLCR_IDCODE_SHIFT 12
21
Michal Simek3cc3fa82014-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 Simekeb8c54b2014-04-25 12:21:04 +020039static const int usb0_pins[] = {
40 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39
41};
42
43static const int usb1_pins[] = {
44 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
45};
46
Michal Simek3cc3fa82014-04-25 12:21:04 +020047static const struct zynq_slcr_mio_get_status mio_periphs[] = {
Michal Simekeb8c54b2014-04-25 12:21:04 +020048 {
49 "usb0",
50 usb0_pins,
51 ARRAY_SIZE(usb0_pins),
52 SLCR_USB_L1_SEL,
53 SLCR_USB_L1_SEL,
54 },
55 {
56 "usb1",
57 usb1_pins,
58 ARRAY_SIZE(usb1_pins),
59 SLCR_USB_L1_SEL,
60 SLCR_USB_L1_SEL,
61 },
Michal Simek3cc3fa82014-04-25 12:21:04 +020062};
63
Michal Simek59c651f2013-02-04 12:38:59 +010064static int slcr_lock = 1; /* 1 means locked, 0 means unlocked */
65
66void zynq_slcr_lock(void)
67{
Michal Simek2da7a742013-08-30 07:26:08 +020068 if (!slcr_lock) {
Michal Simek59c651f2013-02-04 12:38:59 +010069 writel(SLCR_LOCK_MAGIC, &slcr_base->slcr_lock);
Michal Simek2da7a742013-08-30 07:26:08 +020070 slcr_lock = 1;
71 }
Michal Simek59c651f2013-02-04 12:38:59 +010072}
73
74void zynq_slcr_unlock(void)
75{
Michal Simek2da7a742013-08-30 07:26:08 +020076 if (slcr_lock) {
Michal Simek59c651f2013-02-04 12:38:59 +010077 writel(SLCR_UNLOCK_MAGIC, &slcr_base->slcr_unlock);
Michal Simek2da7a742013-08-30 07:26:08 +020078 slcr_lock = 0;
79 }
Michal Simek59c651f2013-02-04 12:38:59 +010080}
81
82/* Reset the entire system */
83void zynq_slcr_cpu_reset(void)
84{
85 /*
86 * Unlock the SLCR then reset the system.
87 * Note that this seems to require raw i/o
88 * functions or there's a lockup?
89 */
90 zynq_slcr_unlock();
91
92 /*
93 * Clear 0x0F000000 bits of reboot status register to workaround
94 * the FSBL not loading the bitstream after soft-reboot
95 * This is a temporary solution until we know more.
96 */
97 clrbits_le32(&slcr_base->reboot_status, 0xF000000);
98
99 writel(1, &slcr_base->pss_rst_ctrl);
100}
Michal Simek80243522012-10-15 14:01:23 +0200101
102/* Setup clk for network */
Soren Brinkmann97598fc2013-11-21 13:39:01 -0800103void zynq_slcr_gem_clk_setup(u32 gem_id, unsigned long clk_rate)
Michal Simek80243522012-10-15 14:01:23 +0200104{
Soren Brinkmann97598fc2013-11-21 13:39:01 -0800105 int ret;
106
Michal Simek80243522012-10-15 14:01:23 +0200107 zynq_slcr_unlock();
108
109 if (gem_id > 1) {
110 printf("Non existing GEM id %d\n", gem_id);
111 goto out;
112 }
113
Soren Brinkmann97598fc2013-11-21 13:39:01 -0800114 ret = zynq_clk_set_rate(gem0_clk + gem_id, clk_rate);
115 if (ret)
116 goto out;
117
Michal Simek80243522012-10-15 14:01:23 +0200118 if (gem_id) {
Michal Simek80243522012-10-15 14:01:23 +0200119 /* Configure GEM_RCLK_CTRL */
Soren Brinkmann1cd46ed2013-11-21 13:39:00 -0800120 writel(1, &slcr_base->gem1_rclk_ctrl);
Michal Simek80243522012-10-15 14:01:23 +0200121 } else {
Michal Simek80243522012-10-15 14:01:23 +0200122 /* Configure GEM_RCLK_CTRL */
Soren Brinkmann1cd46ed2013-11-21 13:39:00 -0800123 writel(1, &slcr_base->gem0_rclk_ctrl);
Michal Simek80243522012-10-15 14:01:23 +0200124 }
Michal Simek39523be2013-05-08 15:37:28 +0200125 udelay(100000);
Michal Simek80243522012-10-15 14:01:23 +0200126out:
127 zynq_slcr_lock();
128}
Michal Simekd5dae852013-04-22 15:43:02 +0200129
130void zynq_slcr_devcfg_disable(void)
131{
132 zynq_slcr_unlock();
133
Michal Simek6e047692014-03-27 10:06:43 +0100134 /* Disable AXI interface by asserting FPGA resets */
Michal Simekd5dae852013-04-22 15:43:02 +0200135 writel(0xFFFFFFFF, &slcr_base->fpga_rst_ctrl);
136
137 /* Set Level Shifters DT618760 */
138 writel(0xA, &slcr_base->lvl_shftr_en);
139
140 zynq_slcr_lock();
141}
142
143void zynq_slcr_devcfg_enable(void)
144{
145 zynq_slcr_unlock();
146
147 /* Set Level Shifters DT618760 */
148 writel(0xF, &slcr_base->lvl_shftr_en);
149
Michal Simek6e047692014-03-27 10:06:43 +0100150 /* Enable AXI interface by de-asserting FPGA resets */
Michal Simekd5dae852013-04-22 15:43:02 +0200151 writel(0x0, &slcr_base->fpga_rst_ctrl);
152
153 zynq_slcr_lock();
154}
155
Jagannadha Sutradharudu Tekib3de9242014-01-09 01:48:21 +0530156u32 zynq_slcr_get_boot_mode(void)
157{
158 /* Get the bootmode register value */
159 return readl(&slcr_base->boot_mode);
160}
161
Michal Simekd5dae852013-04-22 15:43:02 +0200162u32 zynq_slcr_get_idcode(void)
163{
164 return (readl(&slcr_base->pss_idcode) & SLCR_IDCODE_MASK) >>
165 SLCR_IDCODE_SHIFT;
166}
Michal Simek3cc3fa82014-04-25 12:21:04 +0200167
168/*
169 * zynq_slcr_get_mio_pin_status - Get the MIO pin status of peripheral.
170 *
171 * @periph: Name of the peripheral
172 *
173 * Returns count to indicate the number of pins configured for the
174 * given @periph.
175 */
176int zynq_slcr_get_mio_pin_status(const char *periph)
177{
178 const struct zynq_slcr_mio_get_status *mio_ptr;
179 int val, i, j;
180 int mio = 0;
181
182 for (i = 0; i < ARRAY_SIZE(mio_periphs); i++) {
183 if (strcmp(periph, mio_periphs[i].peri_name) == 0) {
184 mio_ptr = &mio_periphs[i];
185 for (j = 0; j < mio_ptr->num_pins; j++) {
186 val = readl(&slcr_base->mio_pin
187 [mio_ptr->get_pins[j]]);
188 if ((val & mio_ptr->mask) == mio_ptr->check_val)
189 mio++;
190 }
191 break;
192 }
193 }
194
195 return mio;
196}