devices-common.h 2.5 KB
Newer Older
R
Rabin Vincent 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * Copyright (C) ST-Ericsson SA 2010
 *
 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
 * License terms: GNU General Public License (GPL), version 2.
 */

#ifndef __DEVICES_COMMON_H
#define __DEVICES_COMMON_H

extern struct amba_device *
12
dbx500_add_amba_device(struct device *parent, const char *name, resource_size_t base,
R
Rabin Vincent 已提交
13 14 15 16 17 18 19 20 21 22
		       int irq, void *pdata, unsigned int periphid);

extern struct platform_device *
dbx500_add_platform_device_4k1irq(const char *name, int id,
				  resource_size_t base,
				  int irq, void *pdata);

struct spi_master_cntlr;

static inline struct amba_device *
23 24
dbx500_add_msp_spi(struct device *parent, const char *name,
		   resource_size_t base, int irq,
R
Rabin Vincent 已提交
25 26
		   struct spi_master_cntlr *pdata)
{
27 28
	return dbx500_add_amba_device(parent, name, base, irq,
				      pdata, 0);
R
Rabin Vincent 已提交
29 30 31
}

static inline struct amba_device *
32 33
dbx500_add_spi(struct device *parent, const char *name, resource_size_t base,
	       int irq, struct spi_master_cntlr *pdata,
34
	       u32 periphid)
R
Rabin Vincent 已提交
35
{
36 37
	return dbx500_add_amba_device(parent, name, base, irq,
				      pdata, periphid);
R
Rabin Vincent 已提交
38 39 40 41 42
}

struct mmci_platform_data;

static inline struct amba_device *
43 44
dbx500_add_sdi(struct device *parent, const char *name, resource_size_t base,
	       int irq, struct mmci_platform_data *pdata, u32 periphid)
R
Rabin Vincent 已提交
45
{
46 47
	return dbx500_add_amba_device(parent, name, base, irq,
				      pdata, periphid);
R
Rabin Vincent 已提交
48 49
}

50 51
struct amba_pl011_data;

R
Rabin Vincent 已提交
52
static inline struct amba_device *
53 54
dbx500_add_uart(struct device *parent, const char *name, resource_size_t base,
		int irq, struct amba_pl011_data *pdata)
R
Rabin Vincent 已提交
55
{
56
	return dbx500_add_amba_device(parent, name, base, irq, pdata, 0);
R
Rabin Vincent 已提交
57 58 59 60 61
}

struct nmk_i2c_controller;

static inline struct platform_device *
62
dbx500_add_i2c(struct device *parent, int id, resource_size_t base, int irq,
R
Rabin Vincent 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
	       struct nmk_i2c_controller *pdata)
{
	return dbx500_add_platform_device_4k1irq("nmk-i2c", id, base, irq,
						 pdata);
}

struct msp_i2s_platform_data;

static inline struct platform_device *
dbx500_add_msp_i2s(int id, resource_size_t base, int irq,
		   struct msp_i2s_platform_data *pdata)
{
	return dbx500_add_platform_device_4k1irq("MSP_I2S", id, base, irq,
						 pdata);
}

static inline struct amba_device *
80
dbx500_add_rtc(struct device *parent, resource_size_t base, int irq)
R
Rabin Vincent 已提交
81
{
82
	return dbx500_add_amba_device(parent, "rtc-pl031", base, irq, NULL, 0);
R
Rabin Vincent 已提交
83 84
}

R
Rabin Vincent 已提交
85 86
struct nmk_gpio_platform_data;

87 88
void dbx500_add_gpios(struct device *parent, resource_size_t *base, int num,
		      int irq, struct nmk_gpio_platform_data *pdata);
R
Rabin Vincent 已提交
89

R
Rabin Vincent 已提交
90
#endif