mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
4b689f02ff
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>
27 lines
549 B
C
27 lines
549 B
C
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/*
|
|
* Dummy header file to enable CONFIG_OF_CONTROL.
|
|
* If CONFIG_OF_CONTROL is enabled, lib/fdtdec.c is compiled.
|
|
* It includes <asm/arch/gpio.h> via <asm/gpio.h>, so those SoCs that enable
|
|
* OF_CONTROL must have arch/gpio.h.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_MX85XX_GPIO_H
|
|
#define __ASM_ARCH_MX85XX_GPIO_H
|
|
|
|
#ifndef CONFIG_MPC85XX_GPIO
|
|
#include <asm/mpc85xx_gpio.h>
|
|
#endif
|
|
|
|
struct mpc85xx_gpio_plat {
|
|
ulong addr;
|
|
unsigned long size;
|
|
uint ngpios;
|
|
};
|
|
|
|
#endif
|