Skip to content

Commit

Permalink
[ARM] pxa/aspenite: add support for console uart
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Miao <eric.miao@marvell.com>
  • Loading branch information
Eric Miao committed Mar 23, 2009
1 parent 5642255 commit 9c291f0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions arch/arm/mach-mmp/aspenite.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,27 @@
*/

#include <linux/init.h>
#include <linux/kernel.h>

#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <mach/addr-map.h>
#include <mach/mfp-pxa168.h>
#include <mach/pxa168.h>

#include "common.h"

static unsigned long common_pin_config[] __initdata = {
/* UART1 */
GPIO107_UART1_RXD,
GPIO108_UART1_TXD,
};

static void __init common_init(void)
{
mfp_config(ARRAY_AND_SIZE(common_pin_config));

pxa168_add_uart(1);
}

MACHINE_START(ASPENITE, "PXA168-based Aspenite Development Platform")
Expand Down

0 comments on commit 9c291f0

Please sign in to comment.