2005-04-16 15:20:36 -07:00
/*
* arch / ppc / platforms / 83 xx / mpc83xx_devices . c
*
* MPC83xx Device descriptions
*
2005-11-13 16:06:30 -08:00
* Maintainer : Kumar Gala < galak @ kernel . crashing . org >
2005-04-16 15:20:36 -07:00
*
* Copyright 2005 Freescale Semiconductor Inc .
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation ; either version 2 of the License , or ( at your
* option ) any later version .
*/
# include <linux/init.h>
# include <linux/module.h>
# include <linux/device.h>
# include <linux/serial_8250.h>
# include <linux/fsl_devices.h>
# include <asm/mpc83xx.h>
# include <asm/irq.h>
# include <asm/ppc_sys.h>
2005-10-11 22:08:12 +10:00
# include <asm/machdep.h>
2005-04-16 15:20:36 -07:00
/* We use offsets for IORESOURCE_MEM since we do not know at compile time
* what IMMRBAR is , will get fixed up by mach_mpc83xx_fixup
*/
2005-11-08 21:34:37 -08:00
struct gianfar_mdio_data mpc83xx_mdio_pdata = {
. paddr = 0x24520 ,
} ;
2005-04-16 15:20:36 -07:00
static struct gianfar_platform_data mpc83xx_tsec1_pdata = {
. device_flags = FSL_GIANFAR_DEV_HAS_GIGABIT |
FSL_GIANFAR_DEV_HAS_COALESCE | FSL_GIANFAR_DEV_HAS_RMON |
FSL_GIANFAR_DEV_HAS_MULTI_INTR ,
} ;
static struct gianfar_platform_data mpc83xx_tsec2_pdata = {
. device_flags = FSL_GIANFAR_DEV_HAS_GIGABIT |
FSL_GIANFAR_DEV_HAS_COALESCE | FSL_GIANFAR_DEV_HAS_RMON |
FSL_GIANFAR_DEV_HAS_MULTI_INTR ,
} ;
static struct fsl_i2c_platform_data mpc83xx_fsl_i2c1_pdata = {
. device_flags = FSL_I2C_DEV_SEPARATE_DFSRR ,
} ;
static struct fsl_i2c_platform_data mpc83xx_fsl_i2c2_pdata = {
. device_flags = FSL_I2C_DEV_SEPARATE_DFSRR ,
} ;
static struct plat_serial8250_port serial_platform_data [ ] = {
[ 0 ] = {
. mapbase = 0x4500 ,
. irq = MPC83xx_IRQ_UART1 ,
. iotype = UPIO_MEM ,
. flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST ,
} ,
[ 1 ] = {
. mapbase = 0x4600 ,
. irq = MPC83xx_IRQ_UART2 ,
. iotype = UPIO_MEM ,
. flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST ,
} ,
2005-05-20 13:59:13 -07:00
{ } ,
2005-04-16 15:20:36 -07:00
} ;
struct platform_device ppc_sys_platform_devices [ ] = {
[ MPC83xx_TSEC1 ] = {
. name = " fsl-gianfar " ,
. id = 1 ,
. dev . platform_data = & mpc83xx_tsec1_pdata ,
. num_resources = 4 ,
. resource = ( struct resource [ ] ) {
{
. start = 0x24000 ,
. end = 0x24fff ,
. flags = IORESOURCE_MEM ,
} ,
{
. name = " tx " ,
. start = MPC83xx_IRQ_TSEC1_TX ,
. end = MPC83xx_IRQ_TSEC1_TX ,
. flags = IORESOURCE_IRQ ,
} ,
{
. name = " rx " ,
. start = MPC83xx_IRQ_TSEC1_RX ,
. end = MPC83xx_IRQ_TSEC1_RX ,
. flags = IORESOURCE_IRQ ,
} ,
{
. name = " error " ,
. start = MPC83xx_IRQ_TSEC1_ERROR ,
. end = MPC83xx_IRQ_TSEC1_ERROR ,
. flags = IORESOURCE_IRQ ,
} ,
} ,
} ,
[ MPC83xx_TSEC2 ] = {
. name = " fsl-gianfar " ,
. id = 2 ,
. dev . platform_data = & mpc83xx_tsec2_pdata ,
. num_resources = 4 ,
. resource = ( struct resource [ ] ) {
{
. start = 0x25000 ,
. end = 0x25fff ,
. flags = IORESOURCE_MEM ,
} ,
{
. name = " tx " ,
. start = MPC83xx_IRQ_TSEC2_TX ,
. end = MPC83xx_IRQ_TSEC2_TX ,
. flags = IORESOURCE_IRQ ,
} ,
{
. name = " rx " ,
. start = MPC83xx_IRQ_TSEC2_RX ,
. end = MPC83xx_IRQ_TSEC2_RX ,
. flags = IORESOURCE_IRQ ,
} ,
{
. name = " error " ,
. start = MPC83xx_IRQ_TSEC2_ERROR ,
. end = MPC83xx_IRQ_TSEC2_ERROR ,
. flags = IORESOURCE_IRQ ,
} ,
} ,
} ,
[ MPC83xx_IIC1 ] = {
. name = " fsl-i2c " ,
. id = 1 ,
. dev . platform_data = & mpc83xx_fsl_i2c1_pdata ,
. num_resources = 2 ,
. resource = ( struct resource [ ] ) {
{
. start = 0x3000 ,
. end = 0x30ff ,
. flags = IORESOURCE_MEM ,
} ,
{
. start = MPC83xx_IRQ_IIC1 ,
. end = MPC83xx_IRQ_IIC1 ,
. flags = IORESOURCE_IRQ ,
} ,
} ,
} ,
[ MPC83xx_IIC2 ] = {
. name = " fsl-i2c " ,
. id = 2 ,
. dev . platform_data = & mpc83xx_fsl_i2c2_pdata ,
. num_resources = 2 ,
. resource = ( struct resource [ ] ) {
{
. start = 0x3100 ,
. end = 0x31ff ,
. flags = IORESOURCE_MEM ,
} ,
{
. start = MPC83xx_IRQ_IIC2 ,
. end = MPC83xx_IRQ_IIC2 ,
. flags = IORESOURCE_IRQ ,
} ,
} ,
} ,
[ MPC83xx_DUART ] = {
. name = " serial8250 " ,
2005-09-08 16:04:41 +01:00
. id = PLAT8250_DEV_PLATFORM ,
2005-04-16 15:20:36 -07:00
. dev . platform_data = serial_platform_data ,
} ,
[ MPC83xx_SEC2 ] = {
. name = " fsl-sec2 " ,
. id = 1 ,
. num_resources = 2 ,
. resource = ( struct resource [ ] ) {
{
. start = 0x30000 ,
. end = 0x3ffff ,
. flags = IORESOURCE_MEM ,
} ,
{
. start = MPC83xx_IRQ_SEC2 ,
. end = MPC83xx_IRQ_SEC2 ,
. flags = IORESOURCE_IRQ ,
} ,
} ,
} ,
[ MPC83xx_USB2_DR ] = {
. name = " fsl-usb2-dr " ,
. id = 1 ,
. num_resources = 2 ,
. resource = ( struct resource [ ] ) {
{
2005-08-08 14:49:17 -07:00
. start = 0x23000 ,
. end = 0x23fff ,
2005-04-16 15:20:36 -07:00
. flags = IORESOURCE_MEM ,
} ,
{
. start = MPC83xx_IRQ_USB2_DR ,
. end = MPC83xx_IRQ_USB2_DR ,
. flags = IORESOURCE_IRQ ,
} ,
} ,
} ,
[ MPC83xx_USB2_MPH ] = {
. name = " fsl-usb2-mph " ,
. id = 1 ,
. num_resources = 2 ,
. resource = ( struct resource [ ] ) {
{
2005-08-08 14:49:17 -07:00
. start = 0x22000 ,
. end = 0x22fff ,
2005-04-16 15:20:36 -07:00
. flags = IORESOURCE_MEM ,
} ,
{
. start = MPC83xx_IRQ_USB2_MPH ,
. end = MPC83xx_IRQ_USB2_MPH ,
. flags = IORESOURCE_IRQ ,
} ,
} ,
} ,
2005-11-08 21:34:37 -08:00
[ MPC83xx_MDIO ] = {
. name = " fsl-gianfar_mdio " ,
. id = 0 ,
. dev . platform_data = & mpc83xx_mdio_pdata ,
. num_resources = 0 ,
} ,
2005-04-16 15:20:36 -07:00
} ;
static int __init mach_mpc83xx_fixup ( struct platform_device * pdev )
{
ppc_sys_fixup_mem_resource ( pdev , immrbar ) ;
return 0 ;
}
static int __init mach_mpc83xx_init ( void )
{
if ( ppc_md . progress )
ppc_md . progress ( " mach_mpc83xx_init:enter " , 0 ) ;
ppc_sys_device_fixup = mach_mpc83xx_fixup ;
return 0 ;
}
postcore_initcall ( mach_mpc83xx_init ) ;