Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 Xilinx Inc. |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/io.h> |
| 9 | #include <malloc.h> |
| 10 | #include <asm/arch/hardware.h> |
Michal Simek | 3b5b599 | 2014-04-25 13:48:08 +0200 | [diff] [blame] | 11 | #include <asm/arch/sys_proto.h> |
Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 12 | |
| 13 | #define SLCR_LOCK_MAGIC 0x767B |
| 14 | #define SLCR_UNLOCK_MAGIC 0xDF0D |
| 15 | |
Michal Simek | cde28c8 | 2016-10-26 10:49:37 +0200 | [diff] [blame] | 16 | #define SLCR_NAND_L2_SEL 0x10 |
| 17 | #define SLCR_NAND_L2_SEL_MASK 0x1F |
| 18 | |
Michal Simek | eb8c54b | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 19 | #define SLCR_USB_L1_SEL 0x04 |
| 20 | |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 21 | #define SLCR_IDCODE_MASK 0x1F000 |
| 22 | #define SLCR_IDCODE_SHIFT 12 |
| 23 | |
Michal Simek | 3cc3fa8 | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 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 | */ |
| 33 | struct 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 Simek | cde28c8 | 2016-10-26 10:49:37 +0200 | [diff] [blame] | 41 | static const int nand8_pins[] = { |
| 42 | 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 |
| 43 | }; |
| 44 | |
| 45 | static const int nand16_pins[] = { |
| 46 | 16, 17, 18, 19, 20, 21, 22, 23 |
| 47 | }; |
| 48 | |
Michal Simek | eb8c54b | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 49 | static const int usb0_pins[] = { |
| 50 | 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39 |
| 51 | }; |
| 52 | |
| 53 | static const int usb1_pins[] = { |
| 54 | 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 |
| 55 | }; |
| 56 | |
Michal Simek | 3cc3fa8 | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 57 | static const struct zynq_slcr_mio_get_status mio_periphs[] = { |
Michal Simek | eb8c54b | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 58 | { |
Michal Simek | cde28c8 | 2016-10-26 10:49:37 +0200 | [diff] [blame] | 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 | }, |
| 72 | { |
Michal Simek | eb8c54b | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 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 | }, |
Michal Simek | 3cc3fa8 | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 86 | }; |
| 87 | |
Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 88 | static int slcr_lock = 1; /* 1 means locked, 0 means unlocked */ |
| 89 | |
| 90 | void zynq_slcr_lock(void) |
| 91 | { |
Michal Simek | 2da7a74 | 2013-08-30 07:26:08 +0200 | [diff] [blame] | 92 | if (!slcr_lock) { |
Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 93 | writel(SLCR_LOCK_MAGIC, &slcr_base->slcr_lock); |
Michal Simek | 2da7a74 | 2013-08-30 07:26:08 +0200 | [diff] [blame] | 94 | slcr_lock = 1; |
| 95 | } |
Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | void zynq_slcr_unlock(void) |
| 99 | { |
Michal Simek | 2da7a74 | 2013-08-30 07:26:08 +0200 | [diff] [blame] | 100 | if (slcr_lock) { |
Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 101 | writel(SLCR_UNLOCK_MAGIC, &slcr_base->slcr_unlock); |
Michal Simek | 2da7a74 | 2013-08-30 07:26:08 +0200 | [diff] [blame] | 102 | slcr_lock = 0; |
| 103 | } |
Michal Simek | 59c651f | 2013-02-04 12:38:59 +0100 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | /* Reset the entire system */ |
| 107 | void 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 Simek | 8024352 | 2012-10-15 14:01:23 +0200 | [diff] [blame] | 125 | |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 126 | void zynq_slcr_devcfg_disable(void) |
| 127 | { |
Siva Durga Prasad Paladugu | f25f552 | 2015-03-02 16:03:46 +0530 | [diff] [blame] | 128 | u32 reg_val; |
| 129 | |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 130 | zynq_slcr_unlock(); |
| 131 | |
Michal Simek | 6e04769 | 2014-03-27 10:06:43 +0100 | [diff] [blame] | 132 | /* Disable AXI interface by asserting FPGA resets */ |
Siva Durga Prasad Paladugu | f60c6fb | 2014-10-28 11:22:19 +0530 | [diff] [blame] | 133 | writel(0xF, &slcr_base->fpga_rst_ctrl); |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 134 | |
Siva Durga Prasad Paladugu | f25f552 | 2015-03-02 16:03:46 +0530 | [diff] [blame] | 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 | |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 140 | /* Set Level Shifters DT618760 */ |
| 141 | writel(0xA, &slcr_base->lvl_shftr_en); |
| 142 | |
| 143 | zynq_slcr_lock(); |
| 144 | } |
| 145 | |
| 146 | void 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 Simek | 6e04769 | 2014-03-27 10:06:43 +0100 | [diff] [blame] | 153 | /* Enable AXI interface by de-asserting FPGA resets */ |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 154 | writel(0x0, &slcr_base->fpga_rst_ctrl); |
| 155 | |
| 156 | zynq_slcr_lock(); |
| 157 | } |
| 158 | |
Jagannadha Sutradharudu Teki | b3de924 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 159 | u32 zynq_slcr_get_boot_mode(void) |
| 160 | { |
| 161 | /* Get the bootmode register value */ |
| 162 | return readl(&slcr_base->boot_mode); |
| 163 | } |
| 164 | |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 165 | u32 zynq_slcr_get_idcode(void) |
| 166 | { |
| 167 | return (readl(&slcr_base->pss_idcode) & SLCR_IDCODE_MASK) >> |
| 168 | SLCR_IDCODE_SHIFT; |
| 169 | } |
Michal Simek | 3cc3fa8 | 2014-04-25 12:21:04 +0200 | [diff] [blame] | 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 | */ |
| 179 | int zynq_slcr_get_mio_pin_status(const char *periph) |
| 180 | { |
| 181 | const struct zynq_slcr_mio_get_status *mio_ptr; |
| 182 | int val, i, j; |
| 183 | int mio = 0; |
| 184 | |
| 185 | for (i = 0; i < ARRAY_SIZE(mio_periphs); i++) { |
| 186 | if (strcmp(periph, mio_periphs[i].peri_name) == 0) { |
| 187 | mio_ptr = &mio_periphs[i]; |
| 188 | for (j = 0; j < mio_ptr->num_pins; j++) { |
| 189 | val = readl(&slcr_base->mio_pin |
| 190 | [mio_ptr->get_pins[j]]); |
| 191 | if ((val & mio_ptr->mask) == mio_ptr->check_val) |
| 192 | mio++; |
| 193 | } |
| 194 | break; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | return mio; |
| 199 | } |