aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorPawel Osciak <p.osciak@samsung.com>2010-08-10 21:02:37 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-11 11:59:10 -0400
commiteb42b0441bc7fd29066bb7c38ebabe3d0e3ff202 (patch)
tree299fa255662728de4fe2da89f90fcc836d035824 /arch/arm
parent4e591ac620269b3f5fb000d75444bbb397576315 (diff)
s3c-fb: add device name initialization
Add framebuffer device name initialization calls for S3C2443, S3C64xx and S5P machines. Signed-off-by: Pawel Osciak <p.osciak@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Cc: InKi Dae <inki.dae@samsung.com> Cc: Ben Dooks <ben-linux@fluff.org> Cc: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-s3c2416/s3c2416.c3
-rw-r--r--arch/arm/mach-s3c2443/s3c2443.c2
-rw-r--r--arch/arm/mach-s5pc100/cpu.c2
-rw-r--r--arch/arm/mach-s5pv210/cpu.c3
-rw-r--r--arch/arm/plat-samsung/include/plat/fb-core.h29
5 files changed, 38 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2416/s3c2416.c b/arch/arm/mach-s3c2416/s3c2416.c
index 35dabccd0ac2..bc30245e133b 100644
--- a/arch/arm/mach-s3c2416/s3c2416.c
+++ b/arch/arm/mach-s3c2416/s3c2416.c
@@ -55,6 +55,7 @@
55#include <plat/cpu.h> 55#include <plat/cpu.h>
56 56
57#include <plat/iic-core.h> 57#include <plat/iic-core.h>
58#include <plat/fb-core.h>
58 59
59static struct map_desc s3c2416_iodesc[] __initdata = { 60static struct map_desc s3c2416_iodesc[] __initdata = {
60 IODESC_ENT(WATCHDOG), 61 IODESC_ENT(WATCHDOG),
@@ -90,7 +91,7 @@ int __init s3c2416_init(void)
90 s3c_i2c0_setname("s3c2440-i2c"); 91 s3c_i2c0_setname("s3c2440-i2c");
91 s3c_i2c1_setname("s3c2440-i2c"); 92 s3c_i2c1_setname("s3c2440-i2c");
92 93
93 s3c_device_fb.name = "s3c2443-fb"; 94 s3c_fb_setname("s3c2443-fb");
94 95
95 return sysdev_register(&s3c2416_sysdev); 96 return sysdev_register(&s3c2416_sysdev);
96} 97}
diff --git a/arch/arm/mach-s3c2443/s3c2443.c b/arch/arm/mach-s3c2443/s3c2443.c
index ce2ec3298930..839b6b2ced74 100644
--- a/arch/arm/mach-s3c2443/s3c2443.c
+++ b/arch/arm/mach-s3c2443/s3c2443.c
@@ -35,6 +35,7 @@
35#include <plat/s3c2443.h> 35#include <plat/s3c2443.h>
36#include <plat/devs.h> 36#include <plat/devs.h>
37#include <plat/cpu.h> 37#include <plat/cpu.h>
38#include <plat/fb-core.h>
38 39
39static struct map_desc s3c2443_iodesc[] __initdata = { 40static struct map_desc s3c2443_iodesc[] __initdata = {
40 IODESC_ENT(WATCHDOG), 41 IODESC_ENT(WATCHDOG),
@@ -62,6 +63,7 @@ int __init s3c2443_init(void)
62 s3c24xx_reset_hook = s3c2443_hard_reset; 63 s3c24xx_reset_hook = s3c2443_hard_reset;
63 64
64 s3c_device_nand.name = "s3c2412-nand"; 65 s3c_device_nand.name = "s3c2412-nand";
66 s3c_fb_setname("s3c2443-fb");
65 67
66 /* change WDT IRQ number */ 68 /* change WDT IRQ number */
67 s3c_device_wdt.resource[1].start = IRQ_S3C2443_WDT; 69 s3c_device_wdt.resource[1].start = IRQ_S3C2443_WDT;
diff --git a/arch/arm/mach-s5pc100/cpu.c b/arch/arm/mach-s5pc100/cpu.c
index 7b5bdbc9a5df..ecab982a38b9 100644
--- a/arch/arm/mach-s5pc100/cpu.c
+++ b/arch/arm/mach-s5pc100/cpu.c
@@ -41,6 +41,7 @@
41#include <plat/iic-core.h> 41#include <plat/iic-core.h>
42#include <plat/sdhci.h> 42#include <plat/sdhci.h>
43#include <plat/onenand-core.h> 43#include <plat/onenand-core.h>
44#include <plat/fb-core.h>
44 45
45#include <plat/s5pc100.h> 46#include <plat/s5pc100.h>
46 47
@@ -92,6 +93,7 @@ void __init s5pc100_map_io(void)
92 s3c_i2c1_setname("s3c2440-i2c"); 93 s3c_i2c1_setname("s3c2440-i2c");
93 94
94 s3c_onenand_setname("s5pc100-onenand"); 95 s3c_onenand_setname("s5pc100-onenand");
96 s3c_fb_setname("s5pc100-fb");
95} 97}
96 98
97void __init s5pc100_init_clocks(int xtal) 99void __init s5pc100_init_clocks(int xtal)
diff --git a/arch/arm/mach-s5pv210/cpu.c b/arch/arm/mach-s5pv210/cpu.c
index 411a4a9cbfc7..ffd8b17c363a 100644
--- a/arch/arm/mach-s5pv210/cpu.c
+++ b/arch/arm/mach-s5pv210/cpu.c
@@ -31,6 +31,7 @@
31#include <plat/cpu.h> 31#include <plat/cpu.h>
32#include <plat/devs.h> 32#include <plat/devs.h>
33#include <plat/clock.h> 33#include <plat/clock.h>
34#include <plat/fb-core.h>
34#include <plat/s5pv210.h> 35#include <plat/s5pv210.h>
35#include <plat/iic-core.h> 36#include <plat/iic-core.h>
36#include <plat/sdhci.h> 37#include <plat/sdhci.h>
@@ -91,6 +92,8 @@ void __init s5pv210_map_io(void)
91 s3c_i2c0_setname("s3c2440-i2c"); 92 s3c_i2c0_setname("s3c2440-i2c");
92 s3c_i2c1_setname("s3c2440-i2c"); 93 s3c_i2c1_setname("s3c2440-i2c");
93 s3c_i2c2_setname("s3c2440-i2c"); 94 s3c_i2c2_setname("s3c2440-i2c");
95
96 s3c_fb_setname("s5pv210-fb");
94} 97}
95 98
96void __init s5pv210_init_clocks(int xtal) 99void __init s5pv210_init_clocks(int xtal)
diff --git a/arch/arm/plat-samsung/include/plat/fb-core.h b/arch/arm/plat-samsung/include/plat/fb-core.h
new file mode 100644
index 000000000000..bca383efcf6d
--- /dev/null
+++ b/arch/arm/plat-samsung/include/plat/fb-core.h
@@ -0,0 +1,29 @@
1/*
2 * arch/arm/plat-samsung/include/plat/fb-core.h
3 *
4 * Copyright 2010 Samsung Electronics Co., Ltd.
5 * Pawel Osciak <p.osciak@samsung.com>
6 *
7 * Samsung framebuffer driver core functions
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13#ifndef __ASM_PLAT_FB_CORE_H
14#define __ASM_PLAT_FB_CORE_H __FILE__
15
16/*
17 * These functions are only for use with the core support code, such as
18 * the CPU-specific initialization code.
19 */
20
21/* Re-define device name depending on support. */
22static inline void s3c_fb_setname(char *name)
23{
24#ifdef CONFIG_S3C_DEV_FB
25 s3c_device_fb.name = name;
26#endif
27}
28
29#endif /* __ASM_PLAT_FB_CORE_H */