* [U-Boot] [PATCH] ARMV7: S5P: serial: support the s5pc210
@ 2010-09-28 6:15 Minkyu Kang
2010-10-19 2:38 ` Minkyu Kang
0 siblings, 1 reply; 2+ messages in thread
From: Minkyu Kang @ 2010-09-28 6:15 UTC (permalink / raw)
To: u-boot
This patch is for s5pc210 support.
Due to the resigter of baudrate is changed from slot to value,
add both of them to uart structure.
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
arch/arm/include/asm/arch-s5pc1xx/uart.h | 14 +++++++++++---
drivers/serial/serial_s5p.c | 6 +++++-
2 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/arch/arm/include/asm/arch-s5pc1xx/uart.h b/arch/arm/include/asm/arch-s5pc1xx/uart.h
index 2d7ad7e..f6eeab4 100644
--- a/arch/arm/include/asm/arch-s5pc1xx/uart.h
+++ b/arch/arm/include/asm/arch-s5pc1xx/uart.h
@@ -24,6 +24,12 @@
#define __ASM_ARCH_UART_H_
#ifndef __ASSEMBLY__
+/* baudrate rest value */
+union br_rest {
+ unsigned short slot; /* udivslot */
+ unsigned char value; /* ufracval */
+};
+
struct s5p_uart {
unsigned int ulcon;
unsigned int ucon;
@@ -38,10 +44,12 @@ struct s5p_uart {
unsigned char urxh;
unsigned char res2[3];
unsigned int ubrdiv;
- unsigned short udivslot;
- unsigned char res3[2];
- unsigned char res4[0x3d0];
+ union br_rest rest;
+ unsigned char res3[0x3d0];
};
+
+static int use_divslot = 1;
+
#endif /* __ASSEMBLY__ */
#endif
diff --git a/drivers/serial/serial_s5p.c b/drivers/serial/serial_s5p.c
index 7709664..36333c3 100644
--- a/drivers/serial/serial_s5p.c
+++ b/drivers/serial/serial_s5p.c
@@ -70,7 +70,11 @@ void serial_setbrg_dev(const int dev_index)
val = uclk / baudrate;
writel(val / 16 - 1, &uart->ubrdiv);
- writew(udivslot[val % 16], &uart->udivslot);
+
+ if (use_divslot)
+ writew(udivslot[val % 16], &uart->rest.slot);
+ else
+ writeb(val % 16, &uart->rest.value);
}
/*
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread* [U-Boot] [PATCH] ARMV7: S5P: serial: support the s5pc210
2010-09-28 6:15 [U-Boot] [PATCH] ARMV7: S5P: serial: support the s5pc210 Minkyu Kang
@ 2010-10-19 2:38 ` Minkyu Kang
0 siblings, 0 replies; 2+ messages in thread
From: Minkyu Kang @ 2010-10-19 2:38 UTC (permalink / raw)
To: u-boot
On 28 September 2010 15:15, Minkyu Kang <mk7.kang@samsung.com> wrote:
> This patch is for s5pc210 support.
> Due to the resigter of baudrate is changed from slot to value,
> add both of them to uart structure.
>
> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> ?arch/arm/include/asm/arch-s5pc1xx/uart.h | ? 14 +++++++++++---
> ?drivers/serial/serial_s5p.c ? ? ? ? ? ? ?| ? ?6 +++++-
> ?2 files changed, 16 insertions(+), 4 deletions(-)
>
applied to u-boot-samsung
--
from. prom.
www.promsoft.net
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-10-19 2:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-28 6:15 [U-Boot] [PATCH] ARMV7: S5P: serial: support the s5pc210 Minkyu Kang
2010-10-19 2:38 ` Minkyu Kang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox