blob: 469c50a6016d33d13197730b8108f0787bb6a100 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Joachim Foerster03d67e12011-10-21 15:48:50 +02002/*
Thomas Chou88d5ecf2015-10-21 21:33:45 +08003 * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
Joachim Foerster03d67e12011-10-21 15:48:50 +02004 * Copyright (C) 2011 Missing Link Electronics
5 * Joachim Foerster <joachim@missinglinkelectronics.com>
Joachim Foerster03d67e12011-10-21 15:48:50 +02006 */
Thomas Chou88d5ecf2015-10-21 21:33:45 +08007#include <dm.h>
8#include <errno.h>
9#include <malloc.h>
10#include <fdtdec.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Joachim Foerster03d67e12011-10-21 15:48:50 +020012#include <asm/io.h>
13#include <asm/gpio.h>
14
Thomas Chou88d5ecf2015-10-21 21:33:45 +080015DECLARE_GLOBAL_DATA_PTR;
Joachim Foerster03d67e12011-10-21 15:48:50 +020016
Thomas Chou88d5ecf2015-10-21 21:33:45 +080017struct altera_pio_regs {
18 u32 data; /* Data register */
19 u32 direction; /* Direction register */
20};
Joachim Foerster03d67e12011-10-21 15:48:50 +020021
Simon Glass8a8d24b2020-12-03 16:55:23 -070022struct altera_pio_plat {
Thomas Chou88d5ecf2015-10-21 21:33:45 +080023 struct altera_pio_regs *regs;
24 int gpio_count;
25 const char *bank_name;
26};
Joachim Foerster03d67e12011-10-21 15:48:50 +020027
Thomas Chou88d5ecf2015-10-21 21:33:45 +080028static int altera_pio_direction_input(struct udevice *dev, unsigned pin)
Joachim Foerster03d67e12011-10-21 15:48:50 +020029{
Simon Glass8a8d24b2020-12-03 16:55:23 -070030 struct altera_pio_plat *plat = dev_get_plat(dev);
Thomas Chou88d5ecf2015-10-21 21:33:45 +080031 struct altera_pio_regs *const regs = plat->regs;
Joachim Foerster03d67e12011-10-21 15:48:50 +020032
Thomas Chou88d5ecf2015-10-21 21:33:45 +080033 clrbits_le32(&regs->direction, 1 << pin);
Joachim Foerster03d67e12011-10-21 15:48:50 +020034
Joachim Foerster03d67e12011-10-21 15:48:50 +020035 return 0;
36}
37
Thomas Chou88d5ecf2015-10-21 21:33:45 +080038static int altera_pio_direction_output(struct udevice *dev, unsigned pin,
39 int val)
Joachim Foerster03d67e12011-10-21 15:48:50 +020040{
Simon Glass8a8d24b2020-12-03 16:55:23 -070041 struct altera_pio_plat *plat = dev_get_plat(dev);
Thomas Chou88d5ecf2015-10-21 21:33:45 +080042 struct altera_pio_regs *const regs = plat->regs;
Joachim Foerster03d67e12011-10-21 15:48:50 +020043
Thomas Chou88d5ecf2015-10-21 21:33:45 +080044 if (val)
45 setbits_le32(&regs->data, 1 << pin);
Joachim Foerster03d67e12011-10-21 15:48:50 +020046 else
Thomas Chou88d5ecf2015-10-21 21:33:45 +080047 clrbits_le32(&regs->data, 1 << pin);
48 /* change the data first, then the direction. to avoid glitch */
49 setbits_le32(&regs->direction, 1 << pin);
50
Joachim Foerster03d67e12011-10-21 15:48:50 +020051 return 0;
52}
53
Thomas Chou88d5ecf2015-10-21 21:33:45 +080054static int altera_pio_get_value(struct udevice *dev, unsigned pin)
Joachim Foerster03d67e12011-10-21 15:48:50 +020055{
Simon Glass8a8d24b2020-12-03 16:55:23 -070056 struct altera_pio_plat *plat = dev_get_plat(dev);
Thomas Chou88d5ecf2015-10-21 21:33:45 +080057 struct altera_pio_regs *const regs = plat->regs;
Joachim Foerster03d67e12011-10-21 15:48:50 +020058
Julien BĂ©raud97b26272019-01-07 09:17:46 +000059 return !!(readl(&regs->data) & (1 << pin));
Joachim Foerster03d67e12011-10-21 15:48:50 +020060}
61
Thomas Chou88d5ecf2015-10-21 21:33:45 +080062static int altera_pio_set_value(struct udevice *dev, unsigned pin, int val)
Joachim Foerster03d67e12011-10-21 15:48:50 +020063{
Simon Glass8a8d24b2020-12-03 16:55:23 -070064 struct altera_pio_plat *plat = dev_get_plat(dev);
Thomas Chou88d5ecf2015-10-21 21:33:45 +080065 struct altera_pio_regs *const regs = plat->regs;
Joachim Foerster03d67e12011-10-21 15:48:50 +020066
Thomas Chou88d5ecf2015-10-21 21:33:45 +080067 if (val)
68 setbits_le32(&regs->data, 1 << pin);
Joachim Foerster03d67e12011-10-21 15:48:50 +020069 else
Thomas Chou88d5ecf2015-10-21 21:33:45 +080070 clrbits_le32(&regs->data, 1 << pin);
Joachim Foerster03d67e12011-10-21 15:48:50 +020071
Joachim Foerster03d67e12011-10-21 15:48:50 +020072 return 0;
73}
Thomas Chou88d5ecf2015-10-21 21:33:45 +080074
75static int altera_pio_probe(struct udevice *dev)
76{
77 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass8a8d24b2020-12-03 16:55:23 -070078 struct altera_pio_plat *plat = dev_get_plat(dev);
Thomas Chou88d5ecf2015-10-21 21:33:45 +080079
80 uc_priv->gpio_count = plat->gpio_count;
81 uc_priv->bank_name = plat->bank_name;
82
83 return 0;
84}
85
Simon Glassd1998a92020-12-03 16:55:21 -070086static int altera_pio_of_to_plat(struct udevice *dev)
Thomas Chou88d5ecf2015-10-21 21:33:45 +080087{
Simon Glass8a8d24b2020-12-03 16:55:23 -070088 struct altera_pio_plat *plat = dev_get_plat(dev);
Thomas Chou88d5ecf2015-10-21 21:33:45 +080089
Masahiro Yamada25484932020-07-17 14:36:48 +090090 plat->regs = map_physmem(dev_read_addr(dev),
Thomas Chou079bfc52015-11-14 11:26:51 +080091 sizeof(struct altera_pio_regs),
92 MAP_NOCACHE);
Simon Glasse160f7d2017-01-17 16:52:55 -070093 plat->gpio_count = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
Thomas Chou88d5ecf2015-10-21 21:33:45 +080094 "altr,gpio-bank-width", 32);
Simon Glasse160f7d2017-01-17 16:52:55 -070095 plat->bank_name = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
Thomas Chou88d5ecf2015-10-21 21:33:45 +080096 "gpio-bank-name", NULL);
97
98 return 0;
99}
100
101static const struct dm_gpio_ops altera_pio_ops = {
102 .direction_input = altera_pio_direction_input,
103 .direction_output = altera_pio_direction_output,
104 .get_value = altera_pio_get_value,
105 .set_value = altera_pio_set_value,
106};
107
108static const struct udevice_id altera_pio_ids[] = {
109 { .compatible = "altr,pio-1.0" },
110 { }
111};
112
113U_BOOT_DRIVER(altera_pio) = {
114 .name = "altera_pio",
115 .id = UCLASS_GPIO,
116 .of_match = altera_pio_ids,
117 .ops = &altera_pio_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700118 .of_to_plat = altera_pio_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700119 .plat_auto = sizeof(struct altera_pio_plat),
Thomas Chou88d5ecf2015-10-21 21:33:45 +0800120 .probe = altera_pio_probe,
121};