diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-09 17:28:38 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-09 17:28:38 -0500 |
commit | dfc1ebe76663d582a01c9dc572395cf8086d01de (patch) | |
tree | 54a5ac91214a90f82c27b6e38099a4470837729e /arch/arm/mach-s3c2440 | |
parent | acc952c1f373bf3f66cc7a10680eee1762bed40b (diff) | |
parent | b001befe58691ef3627458cd814e8cee7f845c5f (diff) |
Merge tag 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Device tree conversions for samsung and tegra
Both platforms had some initial device tree support, but this adds
much more to actually make it usable.
* tag 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (45 commits)
ARM: dts: Add intial dts file for EXYNOS4210 SoC, SMDKV310 and ORIGEN
ARM: EXYNOS: Add Exynos4 device tree enabled board file
rtc: rtc-s3c: Add device tree support
input: samsung-keypad: Add device tree support
ARM: S5PV210: Modify platform data for pl330 driver
ARM: S5PC100: Modify platform data for pl330 driver
ARM: S5P64x0: Modify platform data for pl330 driver
ARM: EXYNOS: Add a alias for pdma clocks
ARM: EXYNOS: Limit usage of pl330 device instance to non-dt build
ARM: SAMSUNG: Add device tree support for pl330 dma engine wrappers
DMA: PL330: Add device tree support
ARM: EXYNOS: Modify platform data for pl330 driver
DMA: PL330: Infer transfer direction from transfer request instead of platform data
DMA: PL330: move filter function into driver
serial: samsung: Fix build for non-Exynos4210 devices
serial: samsung: add device tree support
serial: samsung: merge probe() function from all SoC specific extensions
serial: samsung: merge all SoC specific port reset functions
ARM: SAMSUNG: register uart clocks to clock lookup list
serial: samsung: remove all uses of get_clksrc and set_clksrc
...
Fix up fairly trivial conflicts in arch/arm/mach-s3c2440/clock.c and
drivers/tty/serial/Kconfig both due to just adding code close to
changes.
Diffstat (limited to 'arch/arm/mach-s3c2440')
-rw-r--r-- | arch/arm/mach-s3c2440/clock.c | 44 | ||||
-rw-r--r-- | arch/arm/mach-s3c2440/mach-anubis.c | 22 | ||||
-rw-r--r-- | arch/arm/mach-s3c2440/mach-at2440evb.c | 22 | ||||
-rw-r--r-- | arch/arm/mach-s3c2440/mach-osiris.c | 24 | ||||
-rw-r--r-- | arch/arm/mach-s3c2440/mach-rx1950.c | 18 | ||||
-rw-r--r-- | arch/arm/mach-s3c2440/mach-rx3715.c | 19 |
6 files changed, 57 insertions, 92 deletions
diff --git a/arch/arm/mach-s3c2440/clock.c b/arch/arm/mach-s3c2440/clock.c index d8957592fdc4..bedbc87a3426 100644 --- a/arch/arm/mach-s3c2440/clock.c +++ b/arch/arm/mach-s3c2440/clock.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <linux/mutex.h> | 33 | #include <linux/mutex.h> |
34 | #include <linux/clk.h> | 34 | #include <linux/clk.h> |
35 | #include <linux/io.h> | 35 | #include <linux/io.h> |
36 | #include <linux/serial_core.h> | ||
36 | 37 | ||
37 | #include <mach/hardware.h> | 38 | #include <mach/hardware.h> |
38 | #include <linux/atomic.h> | 39 | #include <linux/atomic.h> |
@@ -42,6 +43,7 @@ | |||
42 | 43 | ||
43 | #include <plat/clock.h> | 44 | #include <plat/clock.h> |
44 | #include <plat/cpu.h> | 45 | #include <plat/cpu.h> |
46 | #include <plat/regs-serial.h> | ||
45 | 47 | ||
46 | /* S3C2440 extended clock support */ | 48 | /* S3C2440 extended clock support */ |
47 | 49 | ||
@@ -107,6 +109,46 @@ static struct clk s3c2440_clk_ac97 = { | |||
107 | .ctrlbit = S3C2440_CLKCON_CAMERA, | 109 | .ctrlbit = S3C2440_CLKCON_CAMERA, |
108 | }; | 110 | }; |
109 | 111 | ||
112 | static unsigned long s3c2440_fclk_n_getrate(struct clk *clk) | ||
113 | { | ||
114 | unsigned long ucon0, ucon1, ucon2, divisor; | ||
115 | |||
116 | /* the fun of calculating the uart divisors on the s3c2440 */ | ||
117 | ucon0 = __raw_readl(S3C24XX_VA_UART0 + S3C2410_UCON); | ||
118 | ucon1 = __raw_readl(S3C24XX_VA_UART1 + S3C2410_UCON); | ||
119 | ucon2 = __raw_readl(S3C24XX_VA_UART2 + S3C2410_UCON); | ||
120 | |||
121 | ucon0 &= S3C2440_UCON0_DIVMASK; | ||
122 | ucon1 &= S3C2440_UCON1_DIVMASK; | ||
123 | ucon2 &= S3C2440_UCON2_DIVMASK; | ||
124 | |||
125 | if (ucon0 != 0) | ||
126 | divisor = (ucon0 >> S3C2440_UCON_DIVSHIFT) + 6; | ||
127 | else if (ucon1 != 0) | ||
128 | divisor = (ucon1 >> S3C2440_UCON_DIVSHIFT) + 21; | ||
129 | else if (ucon2 != 0) | ||
130 | divisor = (ucon2 >> S3C2440_UCON_DIVSHIFT) + 36; | ||
131 | else | ||
132 | /* manual calims 44, seems to be 9 */ | ||
133 | divisor = 9; | ||
134 | |||
135 | return clk_get_rate(clk->parent) / divisor; | ||
136 | } | ||
137 | |||
138 | static struct clk s3c2440_clk_fclk_n = { | ||
139 | .name = "fclk_n", | ||
140 | .parent = &clk_f, | ||
141 | .ops = &(struct clk_ops) { | ||
142 | .get_rate = s3c2440_fclk_n_getrate, | ||
143 | }, | ||
144 | }; | ||
145 | |||
146 | static struct clk_lookup s3c2440_clk_lookup[] = { | ||
147 | CLKDEV_INIT(NULL, "clk_uart_baud1", &s3c24xx_uclk), | ||
148 | CLKDEV_INIT(NULL, "clk_uart_baud2", &clk_p), | ||
149 | CLKDEV_INIT(NULL, "clk_uart_baud3", &s3c2440_clk_fclk_n), | ||
150 | }; | ||
151 | |||
110 | static int s3c2440_clk_add(struct device *dev) | 152 | static int s3c2440_clk_add(struct device *dev) |
111 | { | 153 | { |
112 | struct clk *clock_upll; | 154 | struct clk *clock_upll; |
@@ -125,10 +167,12 @@ static int s3c2440_clk_add(struct device *dev) | |||
125 | s3c2440_clk_cam.parent = clock_h; | 167 | s3c2440_clk_cam.parent = clock_h; |
126 | s3c2440_clk_ac97.parent = clock_p; | 168 | s3c2440_clk_ac97.parent = clock_p; |
127 | s3c2440_clk_cam_upll.parent = clock_upll; | 169 | s3c2440_clk_cam_upll.parent = clock_upll; |
170 | s3c24xx_register_clock(&s3c2440_clk_fclk_n); | ||
128 | 171 | ||
129 | s3c24xx_register_clock(&s3c2440_clk_ac97); | 172 | s3c24xx_register_clock(&s3c2440_clk_ac97); |
130 | s3c24xx_register_clock(&s3c2440_clk_cam); | 173 | s3c24xx_register_clock(&s3c2440_clk_cam); |
131 | s3c24xx_register_clock(&s3c2440_clk_cam_upll); | 174 | s3c24xx_register_clock(&s3c2440_clk_cam_upll); |
175 | clkdev_add_table(s3c2440_clk_lookup, ARRAY_SIZE(s3c2440_clk_lookup)); | ||
132 | 176 | ||
133 | clk_disable(&s3c2440_clk_ac97); | 177 | clk_disable(&s3c2440_clk_ac97); |
134 | clk_disable(&s3c2440_clk_cam); | 178 | clk_disable(&s3c2440_clk_cam); |
diff --git a/arch/arm/mach-s3c2440/mach-anubis.c b/arch/arm/mach-s3c2440/mach-anubis.c index 121ff8d2c887..24569550de1a 100644 --- a/arch/arm/mach-s3c2440/mach-anubis.c +++ b/arch/arm/mach-s3c2440/mach-anubis.c | |||
@@ -98,22 +98,6 @@ static struct map_desc anubis_iodesc[] __initdata = { | |||
98 | #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB | 98 | #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB |
99 | #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE | 99 | #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE |
100 | 100 | ||
101 | static struct s3c24xx_uart_clksrc anubis_serial_clocks[] = { | ||
102 | [0] = { | ||
103 | .name = "uclk", | ||
104 | .divisor = 1, | ||
105 | .min_baud = 0, | ||
106 | .max_baud = 0, | ||
107 | }, | ||
108 | [1] = { | ||
109 | .name = "pclk", | ||
110 | .divisor = 1, | ||
111 | .min_baud = 0, | ||
112 | .max_baud = 0, | ||
113 | } | ||
114 | }; | ||
115 | |||
116 | |||
117 | static struct s3c2410_uartcfg anubis_uartcfgs[] __initdata = { | 101 | static struct s3c2410_uartcfg anubis_uartcfgs[] __initdata = { |
118 | [0] = { | 102 | [0] = { |
119 | .hwport = 0, | 103 | .hwport = 0, |
@@ -121,8 +105,7 @@ static struct s3c2410_uartcfg anubis_uartcfgs[] __initdata = { | |||
121 | .ucon = UCON, | 105 | .ucon = UCON, |
122 | .ulcon = ULCON, | 106 | .ulcon = ULCON, |
123 | .ufcon = UFCON, | 107 | .ufcon = UFCON, |
124 | .clocks = anubis_serial_clocks, | 108 | .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2, |
125 | .clocks_size = ARRAY_SIZE(anubis_serial_clocks), | ||
126 | }, | 109 | }, |
127 | [1] = { | 110 | [1] = { |
128 | .hwport = 2, | 111 | .hwport = 2, |
@@ -130,8 +113,7 @@ static struct s3c2410_uartcfg anubis_uartcfgs[] __initdata = { | |||
130 | .ucon = UCON, | 113 | .ucon = UCON, |
131 | .ulcon = ULCON, | 114 | .ulcon = ULCON, |
132 | .ufcon = UFCON, | 115 | .ufcon = UFCON, |
133 | .clocks = anubis_serial_clocks, | 116 | .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2, |
134 | .clocks_size = ARRAY_SIZE(anubis_serial_clocks), | ||
135 | }, | 117 | }, |
136 | }; | 118 | }; |
137 | 119 | ||
diff --git a/arch/arm/mach-s3c2440/mach-at2440evb.c b/arch/arm/mach-s3c2440/mach-at2440evb.c index b7e334f07da4..d6a9763110cd 100644 --- a/arch/arm/mach-s3c2440/mach-at2440evb.c +++ b/arch/arm/mach-s3c2440/mach-at2440evb.c | |||
@@ -59,22 +59,6 @@ static struct map_desc at2440evb_iodesc[] __initdata = { | |||
59 | #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE) | 59 | #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE) |
60 | #define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE) | 60 | #define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE) |
61 | 61 | ||
62 | static struct s3c24xx_uart_clksrc at2440evb_serial_clocks[] = { | ||
63 | [0] = { | ||
64 | .name = "uclk", | ||
65 | .divisor = 1, | ||
66 | .min_baud = 0, | ||
67 | .max_baud = 0, | ||
68 | }, | ||
69 | [1] = { | ||
70 | .name = "pclk", | ||
71 | .divisor = 1, | ||
72 | .min_baud = 0, | ||
73 | .max_baud = 0, | ||
74 | } | ||
75 | }; | ||
76 | |||
77 | |||
78 | static struct s3c2410_uartcfg at2440evb_uartcfgs[] __initdata = { | 62 | static struct s3c2410_uartcfg at2440evb_uartcfgs[] __initdata = { |
79 | [0] = { | 63 | [0] = { |
80 | .hwport = 0, | 64 | .hwport = 0, |
@@ -82,8 +66,7 @@ static struct s3c2410_uartcfg at2440evb_uartcfgs[] __initdata = { | |||
82 | .ucon = UCON, | 66 | .ucon = UCON, |
83 | .ulcon = ULCON, | 67 | .ulcon = ULCON, |
84 | .ufcon = UFCON, | 68 | .ufcon = UFCON, |
85 | .clocks = at2440evb_serial_clocks, | 69 | .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2, |
86 | .clocks_size = ARRAY_SIZE(at2440evb_serial_clocks), | ||
87 | }, | 70 | }, |
88 | [1] = { | 71 | [1] = { |
89 | .hwport = 1, | 72 | .hwport = 1, |
@@ -91,8 +74,7 @@ static struct s3c2410_uartcfg at2440evb_uartcfgs[] __initdata = { | |||
91 | .ucon = UCON, | 74 | .ucon = UCON, |
92 | .ulcon = ULCON, | 75 | .ulcon = ULCON, |
93 | .ufcon = UFCON, | 76 | .ufcon = UFCON, |
94 | .clocks = at2440evb_serial_clocks, | 77 | .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2, |
95 | .clocks_size = ARRAY_SIZE(at2440evb_serial_clocks), | ||
96 | }, | 78 | }, |
97 | }; | 79 | }; |
98 | 80 | ||
diff --git a/arch/arm/mach-s3c2440/mach-osiris.c b/arch/arm/mach-s3c2440/mach-osiris.c index e795715fba30..4c480ef734f6 100644 --- a/arch/arm/mach-s3c2440/mach-osiris.c +++ b/arch/arm/mach-s3c2440/mach-osiris.c | |||
@@ -102,21 +102,6 @@ static struct map_desc osiris_iodesc[] __initdata = { | |||
102 | #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB | 102 | #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB |
103 | #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE | 103 | #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE |
104 | 104 | ||
105 | static struct s3c24xx_uart_clksrc osiris_serial_clocks[] = { | ||
106 | [0] = { | ||
107 | .name = "uclk", | ||
108 | .divisor = 1, | ||
109 | .min_baud = 0, | ||
110 | .max_baud = 0, | ||
111 | }, | ||
112 | [1] = { | ||
113 | .name = "pclk", | ||
114 | .divisor = 1, | ||
115 | .min_baud = 0, | ||
116 | .max_baud = 0, | ||
117 | } | ||
118 | }; | ||
119 | |||
120 | static struct s3c2410_uartcfg osiris_uartcfgs[] __initdata = { | 105 | static struct s3c2410_uartcfg osiris_uartcfgs[] __initdata = { |
121 | [0] = { | 106 | [0] = { |
122 | .hwport = 0, | 107 | .hwport = 0, |
@@ -124,8 +109,7 @@ static struct s3c2410_uartcfg osiris_uartcfgs[] __initdata = { | |||
124 | .ucon = UCON, | 109 | .ucon = UCON, |
125 | .ulcon = ULCON, | 110 | .ulcon = ULCON, |
126 | .ufcon = UFCON, | 111 | .ufcon = UFCON, |
127 | .clocks = osiris_serial_clocks, | 112 | .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2, |
128 | .clocks_size = ARRAY_SIZE(osiris_serial_clocks), | ||
129 | }, | 113 | }, |
130 | [1] = { | 114 | [1] = { |
131 | .hwport = 1, | 115 | .hwport = 1, |
@@ -133,8 +117,7 @@ static struct s3c2410_uartcfg osiris_uartcfgs[] __initdata = { | |||
133 | .ucon = UCON, | 117 | .ucon = UCON, |
134 | .ulcon = ULCON, | 118 | .ulcon = ULCON, |
135 | .ufcon = UFCON, | 119 | .ufcon = UFCON, |
136 | .clocks = osiris_serial_clocks, | 120 | .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2, |
137 | .clocks_size = ARRAY_SIZE(osiris_serial_clocks), | ||
138 | }, | 121 | }, |
139 | [2] = { | 122 | [2] = { |
140 | .hwport = 2, | 123 | .hwport = 2, |
@@ -142,8 +125,7 @@ static struct s3c2410_uartcfg osiris_uartcfgs[] __initdata = { | |||
142 | .ucon = UCON, | 125 | .ucon = UCON, |
143 | .ulcon = ULCON, | 126 | .ulcon = ULCON, |
144 | .ufcon = UFCON, | 127 | .ufcon = UFCON, |
145 | .clocks = osiris_serial_clocks, | 128 | .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2, |
146 | .clocks_size = ARRAY_SIZE(osiris_serial_clocks), | ||
147 | } | 129 | } |
148 | }; | 130 | }; |
149 | 131 | ||
diff --git a/arch/arm/mach-s3c2440/mach-rx1950.c b/arch/arm/mach-s3c2440/mach-rx1950.c index 332d7533bd96..80077f6472ee 100644 --- a/arch/arm/mach-s3c2440/mach-rx1950.c +++ b/arch/arm/mach-s3c2440/mach-rx1950.c | |||
@@ -70,15 +70,6 @@ | |||
70 | static struct map_desc rx1950_iodesc[] __initdata = { | 70 | static struct map_desc rx1950_iodesc[] __initdata = { |
71 | }; | 71 | }; |
72 | 72 | ||
73 | static struct s3c24xx_uart_clksrc rx1950_serial_clocks[] = { | ||
74 | [0] = { | ||
75 | .name = "fclk", | ||
76 | .divisor = 0x0a, | ||
77 | .min_baud = 0, | ||
78 | .max_baud = 0, | ||
79 | }, | ||
80 | }; | ||
81 | |||
82 | static struct s3c2410_uartcfg rx1950_uartcfgs[] __initdata = { | 73 | static struct s3c2410_uartcfg rx1950_uartcfgs[] __initdata = { |
83 | [0] = { | 74 | [0] = { |
84 | .hwport = 0, | 75 | .hwport = 0, |
@@ -86,8 +77,7 @@ static struct s3c2410_uartcfg rx1950_uartcfgs[] __initdata = { | |||
86 | .ucon = 0x3c5, | 77 | .ucon = 0x3c5, |
87 | .ulcon = 0x03, | 78 | .ulcon = 0x03, |
88 | .ufcon = 0x51, | 79 | .ufcon = 0x51, |
89 | .clocks = rx1950_serial_clocks, | 80 | .clk_sel = S3C2410_UCON_CLKSEL3, |
90 | .clocks_size = ARRAY_SIZE(rx1950_serial_clocks), | ||
91 | }, | 81 | }, |
92 | [1] = { | 82 | [1] = { |
93 | .hwport = 1, | 83 | .hwport = 1, |
@@ -95,8 +85,7 @@ static struct s3c2410_uartcfg rx1950_uartcfgs[] __initdata = { | |||
95 | .ucon = 0x3c5, | 85 | .ucon = 0x3c5, |
96 | .ulcon = 0x03, | 86 | .ulcon = 0x03, |
97 | .ufcon = 0x51, | 87 | .ufcon = 0x51, |
98 | .clocks = rx1950_serial_clocks, | 88 | .clk_sel = S3C2410_UCON_CLKSEL3, |
99 | .clocks_size = ARRAY_SIZE(rx1950_serial_clocks), | ||
100 | }, | 89 | }, |
101 | /* IR port */ | 90 | /* IR port */ |
102 | [2] = { | 91 | [2] = { |
@@ -105,8 +94,7 @@ static struct s3c2410_uartcfg rx1950_uartcfgs[] __initdata = { | |||
105 | .ucon = 0x3c5, | 94 | .ucon = 0x3c5, |
106 | .ulcon = 0x43, | 95 | .ulcon = 0x43, |
107 | .ufcon = 0xf1, | 96 | .ufcon = 0xf1, |
108 | .clocks = rx1950_serial_clocks, | 97 | .clk_sel = S3C2410_UCON_CLKSEL3, |
109 | .clocks_size = ARRAY_SIZE(rx1950_serial_clocks), | ||
110 | }, | 98 | }, |
111 | }; | 99 | }; |
112 | 100 | ||
diff --git a/arch/arm/mach-s3c2440/mach-rx3715.c b/arch/arm/mach-s3c2440/mach-rx3715.c index 80a0972873c2..20103bafbd4b 100644 --- a/arch/arm/mach-s3c2440/mach-rx3715.c +++ b/arch/arm/mach-s3c2440/mach-rx3715.c | |||
@@ -69,16 +69,6 @@ static struct map_desc rx3715_iodesc[] __initdata = { | |||
69 | }, | 69 | }, |
70 | }; | 70 | }; |
71 | 71 | ||
72 | |||
73 | static struct s3c24xx_uart_clksrc rx3715_serial_clocks[] = { | ||
74 | [0] = { | ||
75 | .name = "fclk", | ||
76 | .divisor = 0, | ||
77 | .min_baud = 0, | ||
78 | .max_baud = 0, | ||
79 | } | ||
80 | }; | ||
81 | |||
82 | static struct s3c2410_uartcfg rx3715_uartcfgs[] = { | 72 | static struct s3c2410_uartcfg rx3715_uartcfgs[] = { |
83 | [0] = { | 73 | [0] = { |
84 | .hwport = 0, | 74 | .hwport = 0, |
@@ -86,8 +76,7 @@ static struct s3c2410_uartcfg rx3715_uartcfgs[] = { | |||
86 | .ucon = 0x3c5, | 76 | .ucon = 0x3c5, |
87 | .ulcon = 0x03, | 77 | .ulcon = 0x03, |
88 | .ufcon = 0x51, | 78 | .ufcon = 0x51, |
89 | .clocks = rx3715_serial_clocks, | 79 | .clk_sel = S3C2410_UCON_CLKSEL3, |
90 | .clocks_size = ARRAY_SIZE(rx3715_serial_clocks), | ||
91 | }, | 80 | }, |
92 | [1] = { | 81 | [1] = { |
93 | .hwport = 1, | 82 | .hwport = 1, |
@@ -95,8 +84,7 @@ static struct s3c2410_uartcfg rx3715_uartcfgs[] = { | |||
95 | .ucon = 0x3c5, | 84 | .ucon = 0x3c5, |
96 | .ulcon = 0x03, | 85 | .ulcon = 0x03, |
97 | .ufcon = 0x00, | 86 | .ufcon = 0x00, |
98 | .clocks = rx3715_serial_clocks, | 87 | .clk_sel = S3C2410_UCON_CLKSEL3, |
99 | .clocks_size = ARRAY_SIZE(rx3715_serial_clocks), | ||
100 | }, | 88 | }, |
101 | /* IR port */ | 89 | /* IR port */ |
102 | [2] = { | 90 | [2] = { |
@@ -105,8 +93,7 @@ static struct s3c2410_uartcfg rx3715_uartcfgs[] = { | |||
105 | .ucon = 0x3c5, | 93 | .ucon = 0x3c5, |
106 | .ulcon = 0x43, | 94 | .ulcon = 0x43, |
107 | .ufcon = 0x51, | 95 | .ufcon = 0x51, |
108 | .clocks = rx3715_serial_clocks, | 96 | .clk_sel = S3C2410_UCON_CLKSEL3, |
109 | .clocks_size = ARRAY_SIZE(rx3715_serial_clocks), | ||
110 | } | 97 | } |
111 | }; | 98 | }; |
112 | 99 | ||