mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 03:33:59 +08:00
ARM: S3C2440: Add touchscreen support on GTA02
This patch adds registers the s3c touchscreen and adc devices to add touchscreen support for the gta02. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
5246ae8677
commit
d73af18330
@ -89,6 +89,8 @@
|
|||||||
#include <plat/udc.h>
|
#include <plat/udc.h>
|
||||||
#include <plat/gpio-cfg.h>
|
#include <plat/gpio-cfg.h>
|
||||||
#include <plat/iic.h>
|
#include <plat/iic.h>
|
||||||
|
#include <plat/ts.h>
|
||||||
|
|
||||||
|
|
||||||
static struct pcf50633 *gta02_pcf;
|
static struct pcf50633 *gta02_pcf;
|
||||||
|
|
||||||
@ -480,6 +482,13 @@ static struct s3c2410_hcd_info gta02_usb_info __initdata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Touchscreen */
|
||||||
|
static struct s3c2410_ts_mach_info gta02_ts_info = {
|
||||||
|
.delay = 10000,
|
||||||
|
.presc = 0xff, /* slow as we can go */
|
||||||
|
.oversampling_shift = 2,
|
||||||
|
};
|
||||||
|
|
||||||
/* Buttons */
|
/* Buttons */
|
||||||
static struct gpio_keys_button gta02_buttons[] = {
|
static struct gpio_keys_button gta02_buttons[] = {
|
||||||
{
|
{
|
||||||
@ -533,6 +542,8 @@ static struct platform_device *gta02_devices[] __initdata = {
|
|||||||
&samsung_asoc_dma,
|
&samsung_asoc_dma,
|
||||||
&s3c_device_i2c0,
|
&s3c_device_i2c0,
|
||||||
>a02_buttons_device,
|
>a02_buttons_device,
|
||||||
|
&s3c_device_adc,
|
||||||
|
&s3c_device_ts,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* These guys DO need to be children of PMU. */
|
/* These guys DO need to be children of PMU. */
|
||||||
@ -582,6 +593,7 @@ static void __init gta02_machine_init(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
s3c24xx_udc_set_platdata(>a02_udc_cfg);
|
s3c24xx_udc_set_platdata(>a02_udc_cfg);
|
||||||
|
s3c24xx_ts_set_platdata(>a02_ts_info);
|
||||||
s3c_ohci_set_platdata(>a02_usb_info);
|
s3c_ohci_set_platdata(>a02_usb_info);
|
||||||
s3c_nand_set_platdata(>a02_nand_info);
|
s3c_nand_set_platdata(>a02_nand_info);
|
||||||
s3c_i2c0_set_platdata(NULL);
|
s3c_i2c0_set_platdata(NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user