blob: e0380c349a77bfd59861e49a78425b26d8266ebb [file] [log] [blame]
Vikas Manocha94d53082017-02-12 10:25:49 -08001#include <common.h>
Vikas Manocha94d53082017-02-12 10:25:49 -08002#include <dm.h>
Benjamin Gaignard075b0182018-11-27 13:49:53 +01003#include <hwspinlock.h>
Vikas Manocha77417102017-04-10 15:02:57 -07004#include <asm/arch/gpio.h>
5#include <asm/gpio.h>
6#include <asm/io.h>
Patrice Chotard73858262019-07-30 19:16:10 +02007#include <dm/lists.h>
8#include <dm/pinctrl.h>
Simon Glass61b29b82020-02-03 07:36:15 -07009#include <linux/err.h>
Vikas Manocha94d53082017-02-12 10:25:49 -080010
11DECLARE_GLOBAL_DATA_PTR;
12
Vikas Manocha58fb3c82017-04-10 15:03:04 -070013#define MAX_PINS_ONE_IP 70
Vikas Manocha77417102017-04-10 15:02:57 -070014#define MODE_BITS_MASK 3
15#define OSPEED_MASK 3
16#define PUPD_MASK 3
17#define OTYPE_MSK 1
18#define AFR_MASK 0xF
19
Patrice Chotard8f651ca2018-10-24 14:10:18 +020020struct stm32_pinctrl_priv {
Benjamin Gaignard075b0182018-11-27 13:49:53 +010021 struct hwspinlock hws;
Patrice Chotard8f651ca2018-10-24 14:10:18 +020022 int pinctrl_ngpios;
23 struct list_head gpio_dev;
24};
25
26struct stm32_gpio_bank {
27 struct udevice *gpio_dev;
28 struct list_head list;
29};
30
Benjamin Gaignard075b0182018-11-27 13:49:53 +010031#ifndef CONFIG_SPL_BUILD
32
Patrice Chotard4ff1c202018-10-24 14:10:19 +020033static char pin_name[PINNAME_SIZE];
Patrice Chotardb42d9382018-10-24 14:10:20 +020034#define PINMUX_MODE_COUNT 5
35static const char * const pinmux_mode[PINMUX_MODE_COUNT] = {
36 "gpio input",
37 "gpio output",
38 "analog",
39 "unknown",
40 "alt function",
41};
42
43static int stm32_pinctrl_get_af(struct udevice *dev, unsigned int offset)
44{
45 struct stm32_gpio_priv *priv = dev_get_priv(dev);
46 struct stm32_gpio_regs *regs = priv->regs;
47 u32 af;
48 u32 alt_shift = (offset % 8) * 4;
49 u32 alt_index = offset / 8;
50
51 af = (readl(&regs->afr[alt_index]) &
52 GENMASK(alt_shift + 3, alt_shift)) >> alt_shift;
53
54 return af;
55}
56
Patrice Chotard04355042018-12-03 10:52:50 +010057static int stm32_populate_gpio_dev_list(struct udevice *dev)
58{
59 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
60 struct udevice *gpio_dev;
61 struct udevice *child;
62 struct stm32_gpio_bank *gpio_bank;
63 int ret;
64
65 /*
66 * parse pin-controller sub-nodes (ie gpio bank nodes) and fill
67 * a list with all gpio device reference which belongs to the
68 * current pin-controller. This list is used to find pin_name and
69 * pin muxing
70 */
71 list_for_each_entry(child, &dev->child_head, sibling_node) {
72 ret = uclass_get_device_by_name(UCLASS_GPIO, child->name,
73 &gpio_dev);
74 if (ret < 0)
75 continue;
76
77 gpio_bank = malloc(sizeof(*gpio_bank));
78 if (!gpio_bank) {
79 dev_err(dev, "Not enough memory\n");
80 return -ENOMEM;
81 }
82
83 gpio_bank->gpio_dev = gpio_dev;
84 list_add_tail(&gpio_bank->list, &priv->gpio_dev);
85 }
86
87 return 0;
88}
89
Patrice Chotard8f651ca2018-10-24 14:10:18 +020090static int stm32_pinctrl_get_pins_count(struct udevice *dev)
91{
92 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
93 struct gpio_dev_priv *uc_priv;
94 struct stm32_gpio_bank *gpio_bank;
95
96 /*
97 * if get_pins_count has already been executed once on this
98 * pin-controller, no need to run it again
99 */
100 if (priv->pinctrl_ngpios)
101 return priv->pinctrl_ngpios;
102
Patrice Chotard04355042018-12-03 10:52:50 +0100103 if (list_empty(&priv->gpio_dev))
104 stm32_populate_gpio_dev_list(dev);
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200105 /*
106 * walk through all banks to retrieve the pin-controller
107 * pins number
108 */
109 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
110 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
111
112 priv->pinctrl_ngpios += uc_priv->gpio_count;
113 }
114
115 return priv->pinctrl_ngpios;
116}
117
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200118static struct udevice *stm32_pinctrl_get_gpio_dev(struct udevice *dev,
Patrice Chotard530b63c2018-12-03 10:52:54 +0100119 unsigned int selector,
120 unsigned int *idx)
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200121{
122 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
123 struct stm32_gpio_bank *gpio_bank;
124 struct gpio_dev_priv *uc_priv;
Patrice Chotard530b63c2018-12-03 10:52:54 +0100125 int pin_count = 0;
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200126
Patrice Chotard04355042018-12-03 10:52:50 +0100127 if (list_empty(&priv->gpio_dev))
128 stm32_populate_gpio_dev_list(dev);
129
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200130 /* look up for the bank which owns the requested pin */
131 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
132 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
133
Patrice Chotard530b63c2018-12-03 10:52:54 +0100134 if (selector < (pin_count + uc_priv->gpio_count)) {
135 /*
136 * we found the bank, convert pin selector to
137 * gpio bank index
138 */
139 *idx = stm32_offset_to_index(gpio_bank->gpio_dev,
140 selector - pin_count);
Patrick Delaunay91ca91e2019-06-21 15:26:52 +0200141 if (IS_ERR_VALUE(*idx))
Patrice Chotard530b63c2018-12-03 10:52:54 +0100142 return NULL;
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200143
Patrice Chotard530b63c2018-12-03 10:52:54 +0100144 return gpio_bank->gpio_dev;
145 }
146 pin_count += uc_priv->gpio_count;
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200147 }
148
149 return NULL;
150}
151
152static const char *stm32_pinctrl_get_pin_name(struct udevice *dev,
153 unsigned int selector)
154{
155 struct gpio_dev_priv *uc_priv;
156 struct udevice *gpio_dev;
Patrice Chotard530b63c2018-12-03 10:52:54 +0100157 unsigned int gpio_idx;
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200158
159 /* look up for the bank which owns the requested pin */
Patrice Chotard530b63c2018-12-03 10:52:54 +0100160 gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200161 if (!gpio_dev) {
162 snprintf(pin_name, PINNAME_SIZE, "Error");
163 } else {
164 uc_priv = dev_get_uclass_priv(gpio_dev);
165
166 snprintf(pin_name, PINNAME_SIZE, "%s%d",
167 uc_priv->bank_name,
Patrice Chotard530b63c2018-12-03 10:52:54 +0100168 gpio_idx);
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200169 }
170
171 return pin_name;
172}
Patrice Chotardb42d9382018-10-24 14:10:20 +0200173
174static int stm32_pinctrl_get_pin_muxing(struct udevice *dev,
175 unsigned int selector,
176 char *buf,
177 int size)
178{
179 struct udevice *gpio_dev;
180 const char *label;
Patrice Chotardb42d9382018-10-24 14:10:20 +0200181 int mode;
182 int af_num;
Patrice Chotard530b63c2018-12-03 10:52:54 +0100183 unsigned int gpio_idx;
Patrice Chotardb42d9382018-10-24 14:10:20 +0200184
185 /* look up for the bank which owns the requested pin */
Patrice Chotard530b63c2018-12-03 10:52:54 +0100186 gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
Patrice Chotardb42d9382018-10-24 14:10:20 +0200187
188 if (!gpio_dev)
189 return -ENODEV;
190
Patrice Chotard530b63c2018-12-03 10:52:54 +0100191 mode = gpio_get_raw_function(gpio_dev, gpio_idx, &label);
Patrice Chotardb42d9382018-10-24 14:10:20 +0200192
Patrice Chotard530b63c2018-12-03 10:52:54 +0100193 dev_dbg(dev, "selector = %d gpio_idx = %d mode = %d\n",
194 selector, gpio_idx, mode);
Patrice Chotardb42d9382018-10-24 14:10:20 +0200195
Patrice Chotardb42d9382018-10-24 14:10:20 +0200196
197 switch (mode) {
198 case GPIOF_UNKNOWN:
199 /* should never happen */
200 return -EINVAL;
201 case GPIOF_UNUSED:
202 snprintf(buf, size, "%s", pinmux_mode[mode]);
203 break;
204 case GPIOF_FUNC:
Patrice Chotard530b63c2018-12-03 10:52:54 +0100205 af_num = stm32_pinctrl_get_af(gpio_dev, gpio_idx);
Patrice Chotardb42d9382018-10-24 14:10:20 +0200206 snprintf(buf, size, "%s %d", pinmux_mode[mode], af_num);
207 break;
208 case GPIOF_OUTPUT:
209 case GPIOF_INPUT:
210 snprintf(buf, size, "%s %s",
211 pinmux_mode[mode], label ? label : "");
212 break;
213 }
214
215 return 0;
216}
217
Benjamin Gaignard075b0182018-11-27 13:49:53 +0100218#endif
219
Patrick Delaunay91ca91e2019-06-21 15:26:52 +0200220static int stm32_pinctrl_probe(struct udevice *dev)
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200221{
222 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200223 int ret;
224
225 INIT_LIST_HEAD(&priv->gpio_dev);
226
Benjamin Gaignard075b0182018-11-27 13:49:53 +0100227 /* hwspinlock property is optional, just log the error */
228 ret = hwspinlock_get_by_index(dev, 0, &priv->hws);
229 if (ret)
230 debug("%s: hwspinlock_get_by_index may have failed (%d)\n",
231 __func__, ret);
232
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200233 return 0;
234}
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200235
Vikas Manocha77417102017-04-10 15:02:57 -0700236static int stm32_gpio_config(struct gpio_desc *desc,
237 const struct stm32_gpio_ctl *ctl)
238{
239 struct stm32_gpio_priv *priv = dev_get_priv(desc->dev);
240 struct stm32_gpio_regs *regs = priv->regs;
Benjamin Gaignard075b0182018-11-27 13:49:53 +0100241 struct stm32_pinctrl_priv *ctrl_priv;
242 int ret;
Vikas Manocha77417102017-04-10 15:02:57 -0700243 u32 index;
244
245 if (!ctl || ctl->af > 15 || ctl->mode > 3 || ctl->otype > 1 ||
246 ctl->pupd > 2 || ctl->speed > 3)
247 return -EINVAL;
248
Benjamin Gaignard075b0182018-11-27 13:49:53 +0100249 ctrl_priv = dev_get_priv(dev_get_parent(desc->dev));
250 ret = hwspinlock_lock_timeout(&ctrl_priv->hws, 10);
251 if (ret == -ETIME) {
252 dev_err(desc->dev, "HWSpinlock timeout\n");
253 return ret;
254 }
255
Vikas Manocha77417102017-04-10 15:02:57 -0700256 index = (desc->offset & 0x07) * 4;
257 clrsetbits_le32(&regs->afr[desc->offset >> 3], AFR_MASK << index,
258 ctl->af << index);
259
260 index = desc->offset * 2;
261 clrsetbits_le32(&regs->moder, MODE_BITS_MASK << index,
262 ctl->mode << index);
263 clrsetbits_le32(&regs->ospeedr, OSPEED_MASK << index,
264 ctl->speed << index);
265 clrsetbits_le32(&regs->pupdr, PUPD_MASK << index, ctl->pupd << index);
266
267 index = desc->offset;
268 clrsetbits_le32(&regs->otyper, OTYPE_MSK << index, ctl->otype << index);
269
Benjamin Gaignard075b0182018-11-27 13:49:53 +0100270 hwspinlock_unlock(&ctrl_priv->hws);
271
Vikas Manocha77417102017-04-10 15:02:57 -0700272 return 0;
273}
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100274
Vikas Manocha94d53082017-02-12 10:25:49 -0800275static int prep_gpio_dsc(struct stm32_gpio_dsc *gpio_dsc, u32 port_pin)
276{
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100277 gpio_dsc->port = (port_pin & 0x1F000) >> 12;
Vikas Manocha94d53082017-02-12 10:25:49 -0800278 gpio_dsc->pin = (port_pin & 0x0F00) >> 8;
279 debug("%s: GPIO:port= %d, pin= %d\n", __func__, gpio_dsc->port,
280 gpio_dsc->pin);
281
282 return 0;
283}
284
285static int prep_gpio_ctl(struct stm32_gpio_ctl *gpio_ctl, u32 gpio_fn, int node)
286{
287 gpio_fn &= 0x00FF;
Vikas Manocha77417102017-04-10 15:02:57 -0700288 gpio_ctl->af = 0;
Vikas Manocha94d53082017-02-12 10:25:49 -0800289
290 switch (gpio_fn) {
291 case 0:
292 gpio_ctl->mode = STM32_GPIO_MODE_IN;
293 break;
294 case 1 ... 16:
295 gpio_ctl->mode = STM32_GPIO_MODE_AF;
296 gpio_ctl->af = gpio_fn - 1;
297 break;
298 case 17:
299 gpio_ctl->mode = STM32_GPIO_MODE_AN;
300 break;
301 default:
302 gpio_ctl->mode = STM32_GPIO_MODE_OUT;
303 break;
304 }
305
306 gpio_ctl->speed = fdtdec_get_int(gd->fdt_blob, node, "slew-rate", 0);
307
308 if (fdtdec_get_bool(gd->fdt_blob, node, "drive-open-drain"))
309 gpio_ctl->otype = STM32_GPIO_OTYPE_OD;
310 else
311 gpio_ctl->otype = STM32_GPIO_OTYPE_PP;
312
313 if (fdtdec_get_bool(gd->fdt_blob, node, "bias-pull-up"))
314 gpio_ctl->pupd = STM32_GPIO_PUPD_UP;
315 else if (fdtdec_get_bool(gd->fdt_blob, node, "bias-pull-down"))
316 gpio_ctl->pupd = STM32_GPIO_PUPD_DOWN;
317 else
318 gpio_ctl->pupd = STM32_GPIO_PUPD_NO;
319
320 debug("%s: gpio fn= %d, slew-rate= %x, op type= %x, pull-upd is = %x\n",
321 __func__, gpio_fn, gpio_ctl->speed, gpio_ctl->otype,
322 gpio_ctl->pupd);
323
324 return 0;
325}
326
Christophe Kerelload0376e2017-06-20 17:04:18 +0200327static int stm32_pinctrl_config(int offset)
Vikas Manocha94d53082017-02-12 10:25:49 -0800328{
Vikas Manocha58fb3c82017-04-10 15:03:04 -0700329 u32 pin_mux[MAX_PINS_ONE_IP];
Vikas Manocha94d53082017-02-12 10:25:49 -0800330 int rv, len;
331
Vikas Manocha94d53082017-02-12 10:25:49 -0800332 /*
333 * check for "pinmux" property in each subnode (e.g. pins1 and pins2 for
334 * usart1) of pin controller phandle "pinctrl-0"
335 * */
Christophe Kerelload0376e2017-06-20 17:04:18 +0200336 fdt_for_each_subnode(offset, gd->fdt_blob, offset) {
Vikas Manocha94d53082017-02-12 10:25:49 -0800337 struct stm32_gpio_dsc gpio_dsc;
338 struct stm32_gpio_ctl gpio_ctl;
339 int i;
340
Christophe Kerelload0376e2017-06-20 17:04:18 +0200341 len = fdtdec_get_int_array_count(gd->fdt_blob, offset,
Vikas Manocha94d53082017-02-12 10:25:49 -0800342 "pinmux", pin_mux,
343 ARRAY_SIZE(pin_mux));
Christophe Kerelload0376e2017-06-20 17:04:18 +0200344 debug("%s: no of pinmux entries= %d\n", __func__, len);
Vikas Manocha94d53082017-02-12 10:25:49 -0800345 if (len < 0)
346 return -EINVAL;
347 for (i = 0; i < len; i++) {
Vikas Manocha280057b2017-04-10 15:02:59 -0700348 struct gpio_desc desc;
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100349
Vikas Manocha94d53082017-02-12 10:25:49 -0800350 debug("%s: pinmux = %x\n", __func__, *(pin_mux + i));
351 prep_gpio_dsc(&gpio_dsc, *(pin_mux + i));
Christophe Kerelload0376e2017-06-20 17:04:18 +0200352 prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), offset);
Vikas Manocha280057b2017-04-10 15:02:59 -0700353 rv = uclass_get_device_by_seq(UCLASS_GPIO,
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100354 gpio_dsc.port,
355 &desc.dev);
Vikas Manocha280057b2017-04-10 15:02:59 -0700356 if (rv)
357 return rv;
358 desc.offset = gpio_dsc.pin;
359 rv = stm32_gpio_config(&desc, &gpio_ctl);
Vikas Manocha94d53082017-02-12 10:25:49 -0800360 debug("%s: rv = %d\n\n", __func__, rv);
361 if (rv)
362 return rv;
363 }
364 }
365
366 return 0;
367}
368
Patrice Chotard158abbf2019-06-21 15:39:23 +0200369static int stm32_pinctrl_bind(struct udevice *dev)
370{
371 ofnode node;
372 const char *name;
373 int ret;
374
375 dev_for_each_subnode(node, dev) {
376 debug("%s: bind %s\n", __func__, ofnode_get_name(node));
377
378 ofnode_get_property(node, "gpio-controller", &ret);
379 if (ret < 0)
380 continue;
381 /* Get the name of each gpio node */
382 name = ofnode_get_name(node);
383 if (!name)
384 return -EINVAL;
385
386 /* Bind each gpio node */
387 ret = device_bind_driver_to_node(dev, "gpio_stm32",
388 name, node, NULL);
389 if (ret)
390 return ret;
391
392 debug("%s: bind %s\n", __func__, name);
393 }
394
395 return 0;
396}
397
Christophe Kerellobb44b962017-06-20 17:04:19 +0200398#if CONFIG_IS_ENABLED(PINCTRL_FULL)
399static int stm32_pinctrl_set_state(struct udevice *dev, struct udevice *config)
400{
401 return stm32_pinctrl_config(dev_of_offset(config));
402}
403#else /* PINCTRL_FULL */
Christophe Kerelload0376e2017-06-20 17:04:18 +0200404static int stm32_pinctrl_set_state_simple(struct udevice *dev,
405 struct udevice *periph)
406{
407 const void *fdt = gd->fdt_blob;
408 const fdt32_t *list;
409 uint32_t phandle;
410 int config_node;
411 int size, i, ret;
412
413 list = fdt_getprop(fdt, dev_of_offset(periph), "pinctrl-0", &size);
414 if (!list)
415 return -EINVAL;
416
417 debug("%s: periph->name = %s\n", __func__, periph->name);
418
419 size /= sizeof(*list);
420 for (i = 0; i < size; i++) {
421 phandle = fdt32_to_cpu(*list++);
422
423 config_node = fdt_node_offset_by_phandle(fdt, phandle);
424 if (config_node < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900425 pr_err("prop pinctrl-0 index %d invalid phandle\n", i);
Christophe Kerelload0376e2017-06-20 17:04:18 +0200426 return -EINVAL;
427 }
428
429 ret = stm32_pinctrl_config(config_node);
430 if (ret)
431 return ret;
432 }
433
434 return 0;
435}
Christophe Kerellobb44b962017-06-20 17:04:19 +0200436#endif /* PINCTRL_FULL */
Christophe Kerelload0376e2017-06-20 17:04:18 +0200437
Vikas Manocha94d53082017-02-12 10:25:49 -0800438static struct pinctrl_ops stm32_pinctrl_ops = {
Christophe Kerellobb44b962017-06-20 17:04:19 +0200439#if CONFIG_IS_ENABLED(PINCTRL_FULL)
440 .set_state = stm32_pinctrl_set_state,
441#else /* PINCTRL_FULL */
Vikas Manocha94d53082017-02-12 10:25:49 -0800442 .set_state_simple = stm32_pinctrl_set_state_simple,
Christophe Kerellobb44b962017-06-20 17:04:19 +0200443#endif /* PINCTRL_FULL */
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200444#ifndef CONFIG_SPL_BUILD
Patrice Chotard4ff1c202018-10-24 14:10:19 +0200445 .get_pin_name = stm32_pinctrl_get_pin_name,
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200446 .get_pins_count = stm32_pinctrl_get_pins_count,
Patrice Chotardb42d9382018-10-24 14:10:20 +0200447 .get_pin_muxing = stm32_pinctrl_get_pin_muxing,
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200448#endif
Vikas Manocha94d53082017-02-12 10:25:49 -0800449};
450
451static const struct udevice_id stm32_pinctrl_ids[] = {
Patrice Chotard98693c22017-12-12 09:49:35 +0100452 { .compatible = "st,stm32f429-pinctrl" },
453 { .compatible = "st,stm32f469-pinctrl" },
Vikas Manocha94d53082017-02-12 10:25:49 -0800454 { .compatible = "st,stm32f746-pinctrl" },
Patrice Chotarddd18df42018-12-11 14:49:18 +0100455 { .compatible = "st,stm32f769-pinctrl" },
Patrice Chotard092e72c2017-09-13 18:00:04 +0200456 { .compatible = "st,stm32h743-pinctrl" },
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100457 { .compatible = "st,stm32mp157-pinctrl" },
458 { .compatible = "st,stm32mp157-z-pinctrl" },
Vikas Manocha94d53082017-02-12 10:25:49 -0800459 { }
460};
461
462U_BOOT_DRIVER(pinctrl_stm32) = {
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200463 .name = "pinctrl_stm32",
464 .id = UCLASS_PINCTRL,
465 .of_match = stm32_pinctrl_ids,
466 .ops = &stm32_pinctrl_ops,
Patrice Chotard158abbf2019-06-21 15:39:23 +0200467 .bind = stm32_pinctrl_bind,
Patrice Chotard8f651ca2018-10-24 14:10:18 +0200468 .probe = stm32_pinctrl_probe,
469 .priv_auto_alloc_size = sizeof(struct stm32_pinctrl_priv),
Vikas Manocha94d53082017-02-12 10:25:49 -0800470};