Input: xpad - treat Qanba controllers as Xbox360 controllers
[linux-2.6-block.git] / arch / arm / mach-s3c / devs.h
CommitLineData
4490e3c6
KK
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3db3ae5e
KK
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
1da177e4
LT
5 *
6 * Copyright (c) 2004 Simtec Electronics
7 * Ben Dooks <ben@simtec.co.uk>
8 *
9 * Header file for s3c2410 standard platform devices
4490e3c6 10 */
bb8bb57b
MH
11
12#ifndef __PLAT_DEVS_H
13#define __PLAT_DEVS_H __FILE__
14
d052d1be 15#include <linux/platform_device.h>
1da177e4 16
66a9b49a
BD
17struct s3c24xx_uart_resources {
18 struct resource *resources;
19 unsigned long nr_resources;
20};
21
22extern struct s3c24xx_uart_resources s3c2410_uart_resources[];
0241cbb9 23extern struct s3c24xx_uart_resources s3c64xx_uart_resources[];
66a9b49a 24
1da177e4 25extern struct platform_device *s3c24xx_uart_devs[];
66a9b49a 26extern struct platform_device *s3c24xx_uart_src[];
1da177e4 27
52da219e
MB
28extern struct platform_device s3c64xx_device_iis0;
29extern struct platform_device s3c64xx_device_iis1;
bad1e6aa 30extern struct platform_device s3c64xx_device_spi0;
acf1aef9 31
58435f7b 32extern struct platform_device s3c_device_fb;
bad1e6aa
KK
33extern struct platform_device s3c_device_hsmmc0;
34extern struct platform_device s3c_device_hsmmc1;
35extern struct platform_device s3c_device_hsmmc2;
36extern struct platform_device s3c_device_hsmmc3;
3e1b776c 37extern struct platform_device s3c_device_i2c0;
1aba834d 38extern struct platform_device s3c_device_i2c1;
bad1e6aa 39extern struct platform_device s3c_device_ohci;
f0e1fa76 40extern struct platform_device s3c_device_usb_hsotg;
1da177e4 41
bad1e6aa 42extern struct platform_device samsung_device_keypad;
95e43d46 43extern struct platform_device samsung_device_pwm;
bad1e6aa 44
3911dab8
BD
45/**
46 * s3c_set_platdata() - helper for setting platform data
47 * @pd: The default platform data for this device.
48 * @pdsize: The size of the platform data.
49 * @pdev: Pointer to the device to fill in.
50 *
51 * This helper replaces a number of calls that copy and then set the
52 * platform data of the device.
53 */
54extern void *s3c_set_platdata(void *pd, size_t pdsize,
55 struct platform_device *pdev);
bb8bb57b
MH
56
57#endif /* __PLAT_DEVS_H */