dbc4245bb5
The mxs duart is actually an amba-pl011 device. This commit changes the duart device code to dynamically allocate amba-pl011 device, so that drivers/serial/amba-pl011.c can be used on mxs. Signed-off-by: Shawn Guo <shawn.guo@freescale.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2009-2010 Pengutronix
|
|
* Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License version 2 as published by the
|
|
* Free Software Foundation.
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/init.h>
|
|
#include <linux/amba/bus.h>
|
|
|
|
struct platform_device *mxs_add_platform_device_dmamask(
|
|
const char *name, int id,
|
|
const struct resource *res, unsigned int num_resources,
|
|
const void *data, size_t size_data, u64 dmamask);
|
|
|
|
static inline struct platform_device *mxs_add_platform_device(
|
|
const char *name, int id,
|
|
const struct resource *res, unsigned int num_resources,
|
|
const void *data, size_t size_data)
|
|
{
|
|
return mxs_add_platform_device_dmamask(
|
|
name, id, res, num_resources, data, size_data, 0);
|
|
}
|
|
|
|
int __init mxs_add_amba_device(const struct amba_device *dev);
|
|
|
|
/* duart */
|
|
int __init mxs_add_duart(const struct amba_device *dev);
|
|
|
|
/* fec */
|
|
#include <linux/fec.h>
|
|
struct mxs_fec_data {
|
|
int id;
|
|
resource_size_t iobase;
|
|
resource_size_t iosize;
|
|
resource_size_t irq;
|
|
};
|
|
struct platform_device *__init mxs_add_fec(
|
|
const struct mxs_fec_data *data,
|
|
const struct fec_platform_data *pdata);
|