1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2013 Keymile AG
4 * Valentin Longchamp <valentin.longchamp@keymile.com>
12 /* QRIO GPIO register offsets */
13 #define DIRECT_OFF 0x18
16 int qrio_get_gpio(u8 port_off, u8 gpio_nr)
20 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
22 gprt = in_be32(qrio_base + port_off + GPRT_OFF);
24 return (gprt >> gpio_nr) & 1U;
27 void qrio_set_gpio(u8 port_off, u8 gpio_nr, bool value)
31 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
35 gprt = in_be32(qrio_base + port_off + GPRT_OFF);
41 out_be32(qrio_base + port_off + GPRT_OFF, gprt);
44 void qrio_gpio_direction_output(u8 port_off, u8 gpio_nr, bool value)
48 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
52 direct = in_be32(qrio_base + port_off + DIRECT_OFF);
54 out_be32(qrio_base + port_off + DIRECT_OFF, direct);
56 qrio_set_gpio(port_off, gpio_nr, value);
59 void qrio_gpio_direction_input(u8 port_off, u8 gpio_nr)
63 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
67 direct = in_be32(qrio_base + port_off + DIRECT_OFF);
69 out_be32(qrio_base + port_off + DIRECT_OFF, direct);
72 void qrio_set_opendrain_gpio(u8 port_off, u8 gpio_nr, u8 val)
76 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
80 direct = in_be32(qrio_base + port_off + DIRECT_OFF);
82 /* set to output -> GPIO drives low */
85 /* set to input -> GPIO floating */
88 out_be32(qrio_base + port_off + DIRECT_OFF, direct);
91 #define WDMASK_OFF 0x16
93 void qrio_wdmask(u8 bit, bool wden)
96 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
98 wdmask = in_be16(qrio_base + WDMASK_OFF);
101 wdmask |= (1 << bit);
103 wdmask &= ~(1 << bit);
105 out_be16(qrio_base + WDMASK_OFF, wdmask);
108 #define PRST_OFF 0x1a
110 void qrio_prst(u8 bit, bool en, bool wden)
113 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
115 qrio_wdmask(bit, wden);
117 prst = in_be16(qrio_base + PRST_OFF);
124 out_be16(qrio_base + PRST_OFF, prst);
127 #define PRSTCFG_OFF 0x1c
129 void qrio_prstcfg(u8 bit, u8 mode)
133 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
135 prstcfg = in_be32(qrio_base + PRSTCFG_OFF);
137 for (i = 0; i < 2; i++) {
139 set_bit(2 * bit + i, &prstcfg);
141 clear_bit(2 * bit + i, &prstcfg);
144 out_be32(qrio_base + PRSTCFG_OFF, prstcfg);
147 #define CTRLH_OFF 0x02
148 #define CTRLH_WRL_BOOT 0x01
149 #define CTRLH_WRL_UNITRUN 0x02
151 void qrio_set_leds(void)
154 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
156 /* set UNIT LED to RED and BOOT LED to ON */
157 ctrlh = in_8(qrio_base + CTRLH_OFF);
158 ctrlh |= (CTRLH_WRL_BOOT | CTRLH_WRL_UNITRUN);
159 out_8(qrio_base + CTRLH_OFF, ctrlh);
162 #define CTRLL_OFF 0x03
163 #define CTRLL_WRB_BUFENA 0x20
165 void qrio_enable_app_buffer(void)
168 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
170 /* enable application buffer */
171 ctrll = in_8(qrio_base + CTRLL_OFF);
172 ctrll |= (CTRLL_WRB_BUFENA);
173 out_8(qrio_base + CTRLL_OFF, ctrll);
176 #define REASON1_OFF 0x12
177 #define REASON1_CPUWD 0x01
179 void qrio_cpuwd_flag(bool flag)
182 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
184 reason1 = in_8(qrio_base + REASON1_OFF);
186 reason1 |= REASON1_CPUWD;
188 reason1 &= ~REASON1_CPUWD;
189 out_8(qrio_base + REASON1_OFF, reason1);
192 #define REASON0_OFF 0x13
193 #define REASON0_SWURST 0x80
194 #define REASON0_CPURST 0x40
195 #define REASON0_BPRST 0x20
196 #define REASON0_COPRST 0x10
197 #define REASON0_SWCRST 0x08
198 #define REASON0_WDRST 0x04
199 #define REASON0_KBRST 0x02
200 #define REASON0_POWUP 0x01
202 ((REASON1_CPUWD << 8) |\
203 REASON0_POWUP | REASON0_COPRST | REASON0_KBRST |\
204 REASON0_BPRST | REASON0_SWURST | REASON0_WDRST)
205 #define CORE_RESET REASON0_SWCRST
207 bool qrio_reason_unitrst(void)
210 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
212 reason = in_be16(qrio_base + REASON1_OFF);
214 return (reason & UNIT_RESET) > 0;
217 #define RSTCFG_OFF 0x11
219 void qrio_uprstreq(u8 mode)
222 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
224 rstcfg = in_8(qrio_base + RSTCFG_OFF);
226 if (mode & UPREQ_CORE_RST)
227 rstcfg |= UPREQ_CORE_RST;
229 rstcfg &= ~UPREQ_CORE_RST;
231 out_8(qrio_base + RSTCFG_OFF, rstcfg);
234 /* I2C deblocking uses the algorithm defined in board/keymile/common/common.c
235 * 2 dedicated QRIO GPIOs externally pull the SCL and SDA lines
236 * For I2C only the low state is activly driven and high state is pulled-up
237 * by a resistor. Therefore the deblock GPIOs are used
238 * -> as an active output to drive a low state
239 * -> as an open-drain input to have a pulled-up high state
242 /* By default deblock GPIOs are floating */
243 void i2c_deblock_gpio_cfg(void)
245 /* set I2C bus 1 deblocking GPIOs input, but 0 value for open drain */
246 qrio_gpio_direction_input(KM_I2C_DEBLOCK_PORT,
248 qrio_gpio_direction_input(KM_I2C_DEBLOCK_PORT,
251 qrio_set_gpio(KM_I2C_DEBLOCK_PORT,
252 KM_I2C_DEBLOCK_SCL, 0);
253 qrio_set_gpio(KM_I2C_DEBLOCK_PORT,
254 KM_I2C_DEBLOCK_SDA, 0);
257 void set_sda(int state)
259 qrio_set_opendrain_gpio(KM_I2C_DEBLOCK_PORT,
260 KM_I2C_DEBLOCK_SDA, state);
263 void set_scl(int state)
265 qrio_set_opendrain_gpio(KM_I2C_DEBLOCK_PORT,
266 KM_I2C_DEBLOCK_SCL, state);
271 return qrio_get_gpio(KM_I2C_DEBLOCK_PORT,
277 return qrio_get_gpio(KM_I2C_DEBLOCK_PORT,