2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-05-25 13:15:20 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2016
|
2018-03-06 07:04:58 +00:00
|
|
|
* Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
|
2016-05-25 13:15:20 +00:00
|
|
|
*
|
|
|
|
* based on arch/powerpc/include/asm/mpc85xx_gpio.h, which is
|
|
|
|
*
|
|
|
|
* Copyright 2010 eXMeritus, A Boeing Company
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <mapmem.h>
|
2018-01-15 10:07:49 +00:00
|
|
|
#include <asm/gpio.h>
|
2016-05-25 13:15:20 +00:00
|
|
|
|
|
|
|
struct ccsr_gpio {
|
|
|
|
u32 gpdir;
|
|
|
|
u32 gpodr;
|
|
|
|
u32 gpdat;
|
|
|
|
u32 gpier;
|
|
|
|
u32 gpimr;
|
|
|
|
u32 gpicr;
|
|
|
|
};
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data {
|
2016-05-25 13:15:20 +00:00
|
|
|
/* The bank's register base in memory */
|
|
|
|
struct ccsr_gpio __iomem *base;
|
|
|
|
/* The address of the registers; used to identify the bank */
|
|
|
|
ulong addr;
|
|
|
|
/* The GPIO count of the bank */
|
|
|
|
uint gpio_count;
|
|
|
|
/* The GPDAT register cannot be used to determine the value of output
|
|
|
|
* pins on MPC8572/MPC8536, so we shadow it and use the shadowed value
|
2018-01-15 10:07:46 +00:00
|
|
|
* for output pins
|
|
|
|
*/
|
2016-05-25 13:15:20 +00:00
|
|
|
u32 dat_shadow;
|
2018-01-15 10:07:49 +00:00
|
|
|
ulong type;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MPC8XXX_GPIO_TYPE,
|
|
|
|
MPC5121_GPIO_TYPE,
|
2016-05-25 13:15:20 +00:00
|
|
|
};
|
|
|
|
|
2018-01-15 10:07:46 +00:00
|
|
|
inline u32 gpio_mask(uint gpio)
|
|
|
|
{
|
2016-05-25 13:15:20 +00:00
|
|
|
return (1U << (31 - (gpio)));
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline u32 mpc8xxx_gpio_get_val(struct ccsr_gpio *base, u32 mask)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
|
|
|
return in_be32(&base->gpdat) & mask;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline u32 mpc8xxx_gpio_get_dir(struct ccsr_gpio *base, u32 mask)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
|
|
|
return in_be32(&base->gpdir) & mask;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline void mpc8xxx_gpio_set_in(struct ccsr_gpio *base, u32 gpios)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
|
|
|
clrbits_be32(&base->gpdat, gpios);
|
|
|
|
/* GPDIR register 0 -> input */
|
|
|
|
clrbits_be32(&base->gpdir, gpios);
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline void mpc8xxx_gpio_set_low(struct ccsr_gpio *base, u32 gpios)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
|
|
|
clrbits_be32(&base->gpdat, gpios);
|
|
|
|
/* GPDIR register 1 -> output */
|
|
|
|
setbits_be32(&base->gpdir, gpios);
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline void mpc8xxx_gpio_set_high(struct ccsr_gpio *base, u32 gpios)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
|
|
|
setbits_be32(&base->gpdat, gpios);
|
|
|
|
/* GPDIR register 1 -> output */
|
|
|
|
setbits_be32(&base->gpdir, gpios);
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline int mpc8xxx_gpio_open_drain_val(struct ccsr_gpio *base, u32 mask)
|
2016-05-25 13:15:22 +00:00
|
|
|
{
|
|
|
|
return in_be32(&base->gpodr) & mask;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline void mpc8xxx_gpio_open_drain_on(struct ccsr_gpio *base, u32
|
2016-05-25 13:15:22 +00:00
|
|
|
gpios)
|
|
|
|
{
|
|
|
|
/* GPODR register 1 -> open drain on */
|
|
|
|
setbits_be32(&base->gpodr, gpios);
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static inline void mpc8xxx_gpio_open_drain_off(struct ccsr_gpio *base,
|
2016-05-25 13:15:22 +00:00
|
|
|
u32 gpios)
|
|
|
|
{
|
|
|
|
/* GPODR register 0 -> open drain off (actively driven) */
|
|
|
|
clrbits_be32(&base->gpodr, gpios);
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_direction_input(struct udevice *dev, uint gpio)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
2016-05-25 13:15:20 +00:00
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
mpc8xxx_gpio_set_in(data->base, gpio_mask(gpio));
|
2016-05-25 13:15:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_set_value(struct udevice *dev, uint gpio, int value)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
2016-05-25 13:15:20 +00:00
|
|
|
|
|
|
|
if (value) {
|
|
|
|
data->dat_shadow |= gpio_mask(gpio);
|
2018-01-15 10:07:48 +00:00
|
|
|
mpc8xxx_gpio_set_high(data->base, gpio_mask(gpio));
|
2016-05-25 13:15:20 +00:00
|
|
|
} else {
|
|
|
|
data->dat_shadow &= ~gpio_mask(gpio);
|
2018-01-15 10:07:48 +00:00
|
|
|
mpc8xxx_gpio_set_low(data->base, gpio_mask(gpio));
|
2016-05-25 13:15:20 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_direction_output(struct udevice *dev, uint gpio,
|
2016-05-25 13:15:20 +00:00
|
|
|
int value)
|
|
|
|
{
|
2018-01-15 10:07:49 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
|
|
|
|
|
|
|
/* GPIO 28..31 are input only on MPC5121 */
|
|
|
|
if (data->type == MPC5121_GPIO_TYPE && gpio >= 28)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
return mpc8xxx_gpio_set_value(dev, gpio, value);
|
2016-05-25 13:15:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_get_value(struct udevice *dev, uint gpio)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
2016-05-25 13:15:20 +00:00
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
if (!!mpc8xxx_gpio_get_dir(data->base, gpio_mask(gpio))) {
|
2016-05-25 13:15:20 +00:00
|
|
|
/* Output -> use shadowed value */
|
|
|
|
return !!(data->dat_shadow & gpio_mask(gpio));
|
|
|
|
}
|
2018-01-15 10:07:46 +00:00
|
|
|
|
|
|
|
/* Input -> read value from GPDAT register */
|
2018-01-15 10:07:48 +00:00
|
|
|
return !!mpc8xxx_gpio_get_val(data->base, gpio_mask(gpio));
|
2016-05-25 13:15:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_get_open_drain(struct udevice *dev, uint gpio)
|
2016-05-25 13:15:22 +00:00
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
2016-05-25 13:15:22 +00:00
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
return !!mpc8xxx_gpio_open_drain_val(data->base, gpio_mask(gpio));
|
2016-05-25 13:15:22 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_set_open_drain(struct udevice *dev, uint gpio,
|
2016-05-25 13:15:22 +00:00
|
|
|
int value)
|
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
2016-05-25 13:15:22 +00:00
|
|
|
|
2018-01-15 10:07:46 +00:00
|
|
|
if (value)
|
2018-01-15 10:07:48 +00:00
|
|
|
mpc8xxx_gpio_open_drain_on(data->base, gpio_mask(gpio));
|
2018-01-15 10:07:46 +00:00
|
|
|
else
|
2018-01-15 10:07:48 +00:00
|
|
|
mpc8xxx_gpio_open_drain_off(data->base, gpio_mask(gpio));
|
2018-01-15 10:07:46 +00:00
|
|
|
|
2016-05-25 13:15:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_get_function(struct udevice *dev, uint gpio)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
2016-05-25 13:15:20 +00:00
|
|
|
int dir;
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
dir = !!mpc8xxx_gpio_get_dir(data->base, gpio_mask(gpio));
|
2016-05-25 13:15:20 +00:00
|
|
|
return dir ? GPIOF_OUTPUT : GPIOF_INPUT;
|
|
|
|
}
|
|
|
|
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
#if CONFIG_IS_ENABLED(OF_CONTROL)
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_ofdata_to_platdata(struct udevice *dev)
|
2018-01-15 10:07:46 +00:00
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_plat *plat = dev_get_platdata(dev);
|
2016-05-25 13:15:20 +00:00
|
|
|
fdt_addr_t addr;
|
2018-01-15 10:07:50 +00:00
|
|
|
u32 reg[2];
|
|
|
|
|
|
|
|
dev_read_u32_array(dev, "reg", reg, 2);
|
|
|
|
addr = dev_translate_address(dev, reg);
|
2016-05-25 13:15:20 +00:00
|
|
|
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
plat->addr = addr;
|
2018-01-15 10:07:50 +00:00
|
|
|
plat->size = reg[1];
|
|
|
|
plat->ngpios = dev_read_u32_default(dev, "ngpios", 32);
|
2016-05-25 13:15:20 +00:00
|
|
|
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_platdata_to_priv(struct udevice *dev)
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
{
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *priv = dev_get_priv(dev);
|
|
|
|
struct mpc8xxx_gpio_plat *plat = dev_get_platdata(dev);
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
unsigned long size = plat->size;
|
2018-01-15 10:07:49 +00:00
|
|
|
ulong driver_data = dev_get_driver_data(dev);
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
size = 0x100;
|
|
|
|
|
|
|
|
priv->addr = plat->addr;
|
2018-01-15 10:07:50 +00:00
|
|
|
priv->base = map_sysmem(plat->addr, size);
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
|
|
|
|
if (!priv->base)
|
2016-05-25 13:15:20 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
priv->gpio_count = plat->ngpios;
|
|
|
|
priv->dat_shadow = 0;
|
2016-05-25 13:15:20 +00:00
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
priv->type = driver_data;
|
|
|
|
|
2016-05-25 13:15:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static int mpc8xxx_gpio_probe(struct udevice *dev)
|
2016-05-25 13:15:20 +00:00
|
|
|
{
|
|
|
|
struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
|
2018-01-15 10:07:48 +00:00
|
|
|
struct mpc8xxx_gpio_data *data = dev_get_priv(dev);
|
2016-05-25 13:15:20 +00:00
|
|
|
char name[32], *str;
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
mpc8xxx_gpio_platdata_to_priv(dev);
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
|
2016-05-25 13:15:20 +00:00
|
|
|
snprintf(name, sizeof(name), "MPC@%lx_", data->addr);
|
|
|
|
str = strdup(name);
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
uc_priv->bank_name = str;
|
|
|
|
uc_priv->gpio_count = data->gpio_count;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static const struct dm_gpio_ops gpio_mpc8xxx_ops = {
|
|
|
|
.direction_input = mpc8xxx_gpio_direction_input,
|
|
|
|
.direction_output = mpc8xxx_gpio_direction_output,
|
|
|
|
.get_value = mpc8xxx_gpio_get_value,
|
|
|
|
.set_value = mpc8xxx_gpio_set_value,
|
|
|
|
.get_open_drain = mpc8xxx_gpio_get_open_drain,
|
|
|
|
.set_open_drain = mpc8xxx_gpio_set_open_drain,
|
|
|
|
.get_function = mpc8xxx_gpio_get_function,
|
2016-05-25 13:15:20 +00:00
|
|
|
};
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
static const struct udevice_id mpc8xxx_gpio_ids[] = {
|
2018-01-15 10:07:49 +00:00
|
|
|
{ .compatible = "fsl,pq3-gpio", .data = MPC8XXX_GPIO_TYPE },
|
|
|
|
{ .compatible = "fsl,mpc8308-gpio", .data = MPC8XXX_GPIO_TYPE },
|
|
|
|
{ .compatible = "fsl,mpc8349-gpio", .data = MPC8XXX_GPIO_TYPE },
|
|
|
|
{ .compatible = "fsl,mpc8572-gpio", .data = MPC8XXX_GPIO_TYPE},
|
|
|
|
{ .compatible = "fsl,mpc8610-gpio", .data = MPC8XXX_GPIO_TYPE},
|
|
|
|
{ .compatible = "fsl,mpc5121-gpio", .data = MPC5121_GPIO_TYPE, },
|
|
|
|
{ .compatible = "fsl,qoriq-gpio", .data = MPC8XXX_GPIO_TYPE },
|
2016-05-25 13:15:20 +00:00
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
|
|
|
|
2018-01-15 10:07:48 +00:00
|
|
|
U_BOOT_DRIVER(gpio_mpc8xxx) = {
|
|
|
|
.name = "gpio_mpc8xxx",
|
2016-05-25 13:15:20 +00:00
|
|
|
.id = UCLASS_GPIO,
|
2018-01-15 10:07:48 +00:00
|
|
|
.ops = &gpio_mpc8xxx_ops,
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
#if CONFIG_IS_ENABLED(OF_CONTROL)
|
2018-01-15 10:07:48 +00:00
|
|
|
.ofdata_to_platdata = mpc8xxx_gpio_ofdata_to_platdata,
|
|
|
|
.platdata_auto_alloc_size = sizeof(struct mpc8xxx_gpio_plat),
|
|
|
|
.of_match = mpc8xxx_gpio_ids,
|
dm: gpio: MPC85XX GPIO platform data support
Define a platform data structure for the MPC85XX GPIO driver to allow
use of the driver without device tree. Users should define the GPIO
blocks for their platform like this:
struct mpc85xx_gpio_plat gpio_blocks[] = {
{
.addr = 0x130000,
.ngpios = 32,
},
{
.addr = 0x131000,
.ngpios = 32,
},
};
U_BOOT_DEVICES(my_platform_gpios) = {
{ "gpio_mpc85xx", &gpio_blocks[0] },
{ "gpio_mpc85xx", &gpio_blocks[1] },
};
This is intended to build upon the recent submission of the base
MPC85XX driver from Mario Six. We need to use that new driver
without dts support and this patch gives us that flexibility.
This has been tested on a Freescale T2080 CPU, although only the first
GPIO block.
Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz>
Reviewed-by: Mario Six <mario.six@gdsys.cc>
Tested-by: Mario Six <mario.six@gdsys.cc>
Acked-by: Simon Glass <sjg@chromium.org>
2016-06-13 22:17:05 +00:00
|
|
|
#endif
|
2018-01-15 10:07:48 +00:00
|
|
|
.probe = mpc8xxx_gpio_probe,
|
|
|
|
.priv_auto_alloc_size = sizeof(struct mpc8xxx_gpio_data),
|
2016-05-25 13:15:20 +00:00
|
|
|
};
|