Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 198487
b: refs/heads/master
c: 41d8289
h: refs/heads/master
i:
  198485: bd556fa
  198483: 2259740
  198479: edc5898
v: v3
  • Loading branch information
Naveen Krishna Ch authored and Ben Dooks committed May 20, 2010
1 parent c35d88f commit fbe26a2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 09cae8f195c5be8d3102022c7ecd1653b3653233
refs/heads/master: 41d8289d161e23e9cff78c914b6f37f30e627ea2
2 changes: 2 additions & 0 deletions trunk/arch/arm/mach-s5pv210/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ config MACH_SMDKV210
bool "SMDKV210"
select CPU_S5PV210
select ARCH_SPARSEMEM_ENABLE
select SAMSUNG_DEV_ADC
select SAMSUNG_DEV_TS
help
Machine support for Samsung SMDKV210

Expand Down
2 changes: 2 additions & 0 deletions trunk/arch/arm/mach-s5pv210/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ static void s5pv210_idle(void)

void __init s5pv210_map_io(void)
{
s3c_device_adc.name = "s3c64xx-adc";

iotable_init(s5pv210_iodesc, ARRAY_SIZE(s5pv210_iodesc));
}

Expand Down
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-s5pv210/include/mach/map.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,11 @@
/* AC97 */
#define S5PV210_PA_AC97 0xE2200000

#define S5PV210_PA_ADC (0xE1700000)

/* compatibiltiy defines. */
#define S3C_PA_UART S5PV210_PA_UART
#define S3C_PA_IIC S5PV210_PA_IIC0
#define SAMSUNG_PA_ADC S5PV210_PA_ADC

#endif /* __ASM_ARCH_MAP_H */
11 changes: 11 additions & 0 deletions trunk/arch/arm/mach-s5pv210/mach-smdkv210.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#include <plat/s5pv210.h>
#include <plat/devs.h>
#include <plat/cpu.h>
#include <plat/adc.h>
#include <plat/ts.h>

/* Following are default values for UCON, ULCON and UFCON UART registers */
#define S5PV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
Expand Down Expand Up @@ -74,6 +76,14 @@ static struct s3c2410_uartcfg smdkv210_uartcfgs[] __initdata = {
static struct platform_device *smdkv210_devices[] __initdata = {
&s5pv210_device_iis0,
&s5pv210_device_ac97,
&s3c_device_adc,
&s3c_device_ts,
};

static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
.delay = 10000,
.presc = 49,
.oversampling_shift = 2,
};

static void __init smdkv210_map_io(void)
Expand All @@ -85,6 +95,7 @@ static void __init smdkv210_map_io(void)

static void __init smdkv210_machine_init(void)
{
s3c24xx_ts_set_platdata(&s3c_ts_platform);
platform_add_devices(smdkv210_devices, ARRAY_SIZE(smdkv210_devices));
}

Expand Down

0 comments on commit fbe26a2

Please sign in to comment.