Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd258e52 authored by Matt Hsu's avatar Matt Hsu Committed by Ben Dooks
Browse files

ARM: S3C64XX: Add UART2,UART3 support for SMDK6410 (resend)



Add proper uartcfg for UART port 2,3 and tidy it up on SMDK6410.

Signed-off-by: default avatarMatt Hsu <matt@0xlab.org>
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent 4d4e2bc2
Loading
Loading
Loading
Loading
+20 −6
Original line number Diff line number Diff line
@@ -65,16 +65,30 @@ static struct s3c2410_uartcfg smdk6410_uartcfgs[] __initdata = {
	[0] = {
		.hwport	     = 0,
		.flags	     = 0,
		.ucon	     = 0x3c5,
		.ulcon	     = 0x03,
		.ufcon	     = 0x51,
		.ucon	     = UCON,
		.ulcon	     = ULCON,
		.ufcon	     = UFCON,
	},
	[1] = {
		.hwport	     = 1,
		.flags	     = 0,
		.ucon	     = 0x3c5,
		.ulcon	     = 0x03,
		.ufcon	     = 0x51,
		.ucon	     = UCON,
		.ulcon	     = ULCON,
		.ufcon	     = UFCON,
	},
	[2] = {
		.hwport	     = 2,
		.flags	     = 0,
		.ucon	     = UCON,
		.ulcon	     = ULCON,
		.ufcon	     = UFCON,
	},
	[3] = {
		.hwport	     = 3,
		.flags	     = 0,
		.ucon	     = UCON,
		.ulcon	     = ULCON,
		.ufcon	     = UFCON,
	},
};