ARM: 7372/1: ux500: factor out dynamic amba device allocator
This replaces the dynamic device allocator in the ux500 machine with the common device allocator in the bus code. Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> Cc: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
4ff35d863e
commit
08956a0e8a
@ -11,7 +11,6 @@
|
|||||||
#include <linux/irq.h>
|
#include <linux/irq.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/amba/bus.h>
|
|
||||||
|
|
||||||
#include <plat/gpio-nomadik.h>
|
#include <plat/gpio-nomadik.h>
|
||||||
|
|
||||||
@ -19,38 +18,6 @@
|
|||||||
|
|
||||||
#include "devices-common.h"
|
#include "devices-common.h"
|
||||||
|
|
||||||
struct amba_device *
|
|
||||||
dbx500_add_amba_device(struct device *parent, const char *name,
|
|
||||||
resource_size_t base, int irq, void *pdata,
|
|
||||||
unsigned int periphid)
|
|
||||||
{
|
|
||||||
struct amba_device *dev;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
dev = amba_device_alloc(name, base, SZ_4K);
|
|
||||||
if (!dev)
|
|
||||||
return ERR_PTR(-ENOMEM);
|
|
||||||
|
|
||||||
dev->dma_mask = DMA_BIT_MASK(32);
|
|
||||||
dev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
|
|
||||||
|
|
||||||
dev->irq[0] = irq;
|
|
||||||
|
|
||||||
dev->periphid = periphid;
|
|
||||||
|
|
||||||
dev->dev.platform_data = pdata;
|
|
||||||
|
|
||||||
dev->dev.parent = parent;
|
|
||||||
|
|
||||||
ret = amba_device_add(dev, &iomem_resource);
|
|
||||||
if (ret) {
|
|
||||||
amba_device_put(dev);
|
|
||||||
return ERR_PTR(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
return dev;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct platform_device *
|
static struct platform_device *
|
||||||
dbx500_add_gpio(struct device *parent, int id, resource_size_t addr, int irq,
|
dbx500_add_gpio(struct device *parent, int id, resource_size_t addr, int irq,
|
||||||
struct nmk_gpio_platform_data *pdata)
|
struct nmk_gpio_platform_data *pdata)
|
||||||
|
@ -11,13 +11,9 @@
|
|||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/dma-mapping.h>
|
#include <linux/dma-mapping.h>
|
||||||
#include <linux/sys_soc.h>
|
#include <linux/sys_soc.h>
|
||||||
|
#include <linux/amba/bus.h>
|
||||||
#include <plat/i2c.h>
|
#include <plat/i2c.h>
|
||||||
|
|
||||||
extern struct amba_device *
|
|
||||||
dbx500_add_amba_device(struct device *parent, const char *name,
|
|
||||||
resource_size_t base, int irq, void *pdata,
|
|
||||||
unsigned int periphid);
|
|
||||||
|
|
||||||
struct spi_master_cntlr;
|
struct spi_master_cntlr;
|
||||||
|
|
||||||
static inline struct amba_device *
|
static inline struct amba_device *
|
||||||
@ -25,8 +21,8 @@ dbx500_add_msp_spi(struct device *parent, const char *name,
|
|||||||
resource_size_t base, int irq,
|
resource_size_t base, int irq,
|
||||||
struct spi_master_cntlr *pdata)
|
struct spi_master_cntlr *pdata)
|
||||||
{
|
{
|
||||||
return dbx500_add_amba_device(parent, name, base, irq,
|
return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0,
|
||||||
pdata, 0);
|
pdata, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct amba_device *
|
static inline struct amba_device *
|
||||||
@ -34,8 +30,8 @@ dbx500_add_spi(struct device *parent, const char *name, resource_size_t base,
|
|||||||
int irq, struct spi_master_cntlr *pdata,
|
int irq, struct spi_master_cntlr *pdata,
|
||||||
u32 periphid)
|
u32 periphid)
|
||||||
{
|
{
|
||||||
return dbx500_add_amba_device(parent, name, base, irq,
|
return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0,
|
||||||
pdata, periphid);
|
pdata, periphid);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct mmci_platform_data;
|
struct mmci_platform_data;
|
||||||
@ -44,8 +40,8 @@ static inline struct amba_device *
|
|||||||
dbx500_add_sdi(struct device *parent, const char *name, resource_size_t base,
|
dbx500_add_sdi(struct device *parent, const char *name, resource_size_t base,
|
||||||
int irq, struct mmci_platform_data *pdata, u32 periphid)
|
int irq, struct mmci_platform_data *pdata, u32 periphid)
|
||||||
{
|
{
|
||||||
return dbx500_add_amba_device(parent, name, base, irq,
|
return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0,
|
||||||
pdata, periphid);
|
pdata, periphid);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct amba_pl011_data;
|
struct amba_pl011_data;
|
||||||
@ -54,7 +50,7 @@ static inline struct amba_device *
|
|||||||
dbx500_add_uart(struct device *parent, const char *name, resource_size_t base,
|
dbx500_add_uart(struct device *parent, const char *name, resource_size_t base,
|
||||||
int irq, struct amba_pl011_data *pdata)
|
int irq, struct amba_pl011_data *pdata)
|
||||||
{
|
{
|
||||||
return dbx500_add_amba_device(parent, name, base, irq, pdata, 0);
|
return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0, pdata, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct nmk_i2c_controller;
|
struct nmk_i2c_controller;
|
||||||
@ -85,7 +81,8 @@ dbx500_add_i2c(struct device *parent, int id, resource_size_t base, int irq,
|
|||||||
static inline struct amba_device *
|
static inline struct amba_device *
|
||||||
dbx500_add_rtc(struct device *parent, resource_size_t base, int irq)
|
dbx500_add_rtc(struct device *parent, resource_size_t base, int irq)
|
||||||
{
|
{
|
||||||
return dbx500_add_amba_device(parent, "rtc-pl031", base, irq, NULL, 0);
|
return amba_apb_device_add(parent, "rtc-pl031", base, SZ_4K, irq,
|
||||||
|
0, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct nmk_gpio_platform_data;
|
struct nmk_gpio_platform_data;
|
||||||
|
@ -31,7 +31,7 @@ static inline struct amba_device *
|
|||||||
db8500_add_ssp(struct device *parent, const char *name, resource_size_t base,
|
db8500_add_ssp(struct device *parent, const char *name, resource_size_t base,
|
||||||
int irq, struct pl022_ssp_controller *pdata)
|
int irq, struct pl022_ssp_controller *pdata)
|
||||||
{
|
{
|
||||||
return dbx500_add_amba_device(parent, name, base, irq, pdata, 0);
|
return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0, pdata, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user