Blackfin: move SPORT UART resources to boards files
Rather than keeping the pins in the actual driver and worrying about a mess of Kconfig options, declare all the desired pin resources in the boards file. This lets people easily select the specific pins/ports for the normal emulated UART as well as GPIOs for CTS/RTS. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
committed by
Mike Frysinger
parent
08a54bffaf
commit
df5de26130
@@ -562,16 +562,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
@@ -678,9 +737,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@@ -800,16 +800,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
@@ -926,9 +985,13 @@ static struct platform_device *cmbf527_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@@ -631,16 +631,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
@@ -766,9 +825,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@@ -844,16 +844,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
@@ -1007,9 +1066,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@@ -270,16 +270,75 @@ static struct platform_device bfin_sir0_device = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
@@ -385,9 +444,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@@ -317,16 +317,75 @@ static struct platform_device bfin_sir0_device = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
static struct resource isp1362_hcd_resources[] = {
|
static struct resource isp1362_hcd_resources[] = {
|
||||||
@@ -473,9 +532,13 @@ static struct platform_device *cm_bf533_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
|
#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
|
||||||
&rtc_device,
|
&rtc_device,
|
||||||
|
@@ -397,16 +397,75 @@ static struct platform_device bfin_sir0_device = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
@@ -536,9 +595,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@@ -526,16 +526,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
@@ -647,9 +706,13 @@ static struct platform_device *cm_bf537e_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
&isp1362_hcd_device,
|
&isp1362_hcd_device,
|
||||||
|
@@ -491,16 +491,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
@@ -612,9 +671,13 @@ static struct platform_device *cm_bf537u_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
&isp1362_hcd_device,
|
&isp1362_hcd_device,
|
||||||
|
@@ -377,16 +377,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct platform_device *minotaur_devices[] __initdata = {
|
static struct platform_device *minotaur_devices[] __initdata = {
|
||||||
#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
|
#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
|
||||||
@@ -433,9 +492,13 @@ static struct platform_device *minotaur_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -1677,16 +1677,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
#define CF_IDE_NAND_CARD_USE_HDD_INTERFACE
|
#define CF_IDE_NAND_CARD_USE_HDD_INTERFACE
|
||||||
@@ -1867,9 +1926,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
&bfin_pata_device,
|
&bfin_pata_device,
|
||||||
@@ -1895,10 +1958,10 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
static int __init stamp_init(void)
|
static int __init stamp_init(void)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
||||||
i2c_register_board_info(0, bfin_i2c_board_info,
|
|
||||||
ARRAY_SIZE(bfin_i2c_board_info));
|
|
||||||
bfin_plat_nand_init();
|
bfin_plat_nand_init();
|
||||||
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
||||||
|
i2c_register_board_info(0, bfin_i2c_board_info,
|
||||||
|
ARRAY_SIZE(bfin_i2c_board_info));
|
||||||
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@@ -493,16 +493,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
@@ -614,9 +673,13 @@ static struct platform_device *cm_bf537_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
&isp1362_hcd_device,
|
&isp1362_hcd_device,
|
||||||
|
@@ -262,6 +262,145 @@ static struct platform_device bfin_sir2_device = {
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
static struct resource bfin_sport2_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT2_TCR1,
|
||||||
|
.end = SPORT2_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_RX,
|
||||||
|
.end = IRQ_SPORT2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_ERROR,
|
||||||
|
.end = IRQ_SPORT2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport2_peripherals[] = {
|
||||||
|
P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
|
||||||
|
P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport2_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
|
||||||
|
.resource = bfin_sport2_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
static struct resource bfin_sport3_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT3_TCR1,
|
||||||
|
.end = SPORT3_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_RX,
|
||||||
|
.end = IRQ_SPORT3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_ERROR,
|
||||||
|
.end = IRQ_SPORT3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport3_peripherals[] = {
|
||||||
|
P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
|
||||||
|
P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport3_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
|
||||||
|
.resource = bfin_sport3_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
unsigned short bfin_can_peripherals[] = {
|
unsigned short bfin_can_peripherals[] = {
|
||||||
P_CAN0_RX, P_CAN0_TX, 0
|
P_CAN0_RX, P_CAN0_TX, 0
|
||||||
@@ -767,6 +906,21 @@ static struct platform_device *cm_bf538_devices[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
&bfin_can_device,
|
&bfin_can_device,
|
||||||
#endif
|
#endif
|
||||||
|
@@ -526,6 +526,145 @@ static struct platform_device musb_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
static struct resource bfin_sport2_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT2_TCR1,
|
||||||
|
.end = SPORT2_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_RX,
|
||||||
|
.end = IRQ_SPORT2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_ERROR,
|
||||||
|
.end = IRQ_SPORT2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport2_peripherals[] = {
|
||||||
|
P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
|
||||||
|
P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport2_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
|
||||||
|
.resource = bfin_sport2_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
static struct resource bfin_sport3_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT3_TCR1,
|
||||||
|
.end = SPORT3_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_RX,
|
||||||
|
.end = IRQ_SPORT3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_ERROR,
|
||||||
|
.end = IRQ_SPORT3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport3_peripherals[] = {
|
||||||
|
P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
|
||||||
|
P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport3_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
|
||||||
|
.resource = bfin_sport3_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
||||||
static struct resource bfin_atapi_resources[] = {
|
static struct resource bfin_atapi_resources[] = {
|
||||||
{
|
{
|
||||||
@@ -960,6 +1099,21 @@ static struct platform_device *cm_bf548_devices[] __initdata = {
|
|||||||
&musb_device,
|
&musb_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
||||||
&bfin_atapi_device,
|
&bfin_atapi_device,
|
||||||
#endif
|
#endif
|
||||||
|
@@ -631,6 +631,145 @@ static struct platform_device musb_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
static struct resource bfin_sport2_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT2_TCR1,
|
||||||
|
.end = SPORT2_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_RX,
|
||||||
|
.end = IRQ_SPORT2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_ERROR,
|
||||||
|
.end = IRQ_SPORT2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport2_peripherals[] = {
|
||||||
|
P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
|
||||||
|
P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport2_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
|
||||||
|
.resource = bfin_sport2_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
static struct resource bfin_sport3_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT3_TCR1,
|
||||||
|
.end = SPORT3_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_RX,
|
||||||
|
.end = IRQ_SPORT3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_ERROR,
|
||||||
|
.end = IRQ_SPORT3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport3_peripherals[] = {
|
||||||
|
P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
|
||||||
|
P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport3_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
|
||||||
|
.resource = bfin_sport3_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
unsigned short bfin_can_peripherals[] = {
|
unsigned short bfin_can_peripherals[] = {
|
||||||
P_CAN0_RX, P_CAN0_TX, 0
|
P_CAN0_RX, P_CAN0_TX, 0
|
||||||
@@ -1172,6 +1311,21 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
|||||||
&bfin_isp1760_device,
|
&bfin_isp1760_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
&bfin_can_device,
|
&bfin_can_device,
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user