From a0f2265f433f14f0e0afa768b098ff4a54b2b27a Mon Sep 17 00:00:00 2001 From: John Klug Date: Fri, 2 Oct 2020 11:38:47 -0500 Subject: Add TI Processer GPIO's to MTAC-MFSER module --- machine/sam9g25_mfser_gpio.h | 19 +++++++++++++++++++ machine/ti43x_mfser_gpio.h | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 machine/sam9g25_mfser_gpio.h create mode 100644 machine/ti43x_mfser_gpio.h (limited to 'machine') diff --git a/machine/sam9g25_mfser_gpio.h b/machine/sam9g25_mfser_gpio.h new file mode 100644 index 0000000..1f94a83 --- /dev/null +++ b/machine/sam9g25_mfser_gpio.h @@ -0,0 +1,19 @@ +#ifndef SAM9G25_MFSER_GPIO_H +#define SAM9G25_MFSER_GPIO_H + +#include + +// M_* for machine specific GPIO pin + +// gpio pins for Accessory Card 1 +#define M_AP1_GPIO1 AT91_PIN_PC6 +#define M_AP1_GPIO2 AT91_PIN_PC7 +#define M_AP1_GPIO3 AT91_PIN_PC8 +#define M_AP1_GPIO4 AT91_PIN_PC9 + +// gpio pins for Accessory Card 2 +#define M_AP2_GPIO1 AT91_PIN_PC20 +#define M_AP2_GPIO2 AT91_PIN_PC21 +#define M_AP2_GPIO3 AT91_PIN_PC22 +#define M_AP2_GPIO4 AT91_PIN_PC23 +#endif /* SAM9G25_MFSER_GPIO_H */ \ No newline at end of file diff --git a/machine/ti43x_mfser_gpio.h b/machine/ti43x_mfser_gpio.h new file mode 100644 index 0000000..ce227e7 --- /dev/null +++ b/machine/ti43x_mfser_gpio.h @@ -0,0 +1,19 @@ +#ifndef TI43X_MFSER_GPIO_H +#define TI43X_MFSER_GPIO_H + +#define OMAP_GPIO(BANK, GPIO) ((BANK*32)+GPIO) + +// M_* for machine specific GPIO pin + +// gpio pins for Accessory Card 1 +#define M_AP1_GPIO1 OMAP_GPIO(1,0) +#define M_AP1_GPIO2 OMAP_GPIO(0,24) +#define M_AP1_GPIO3 OMAP_GPIO(0,23) +#define M_AP1_GPIO4 OMAP_GPIO(0,22) + +// gpio pins for Accessory Card 2 +#define M_AP2_GPIO1 OMAP_GPIO(3,19) +#define M_AP2_GPIO2 OMAP_GPIO(3,16) +#define M_AP2_GPIO3 OMAP_GPIO(3,20) +#define M_AP2_GPIO4 OMAP_GPIO(0,19) +#endif /* SAM9G25_MFSER_GPIO_H */ \ No newline at end of file -- cgit v1.2.3