Root/
| 1 | /* |
| 2 | * board-pmp.c |
| 3 | * |
| 4 | * JZ4730-based PMP board routines. |
| 5 | * |
| 6 | * Copyright (c) 2005-2008 Ingenic Semiconductor Inc. |
| 7 | * Author: <jlwei@ingenic.cn> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | */ |
| 14 | |
| 15 | #include <config.h> |
| 16 | |
| 17 | #ifdef CONFIG_JZ4740 |
| 18 | |
| 19 | #include <jz4740.h> |
| 20 | #include <jz4740_board.h> |
| 21 | |
| 22 | void gpio_init(void) |
| 23 | { |
| 24 | __gpio_as_uart0(); |
| 25 | __gpio_as_sdram_32bit(); |
| 26 | } |
| 27 | |
| 28 | #endif /* CONFIG_JZ4740 */ |
| 29 |
