Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 1 | /* |
Nobuhiro Iwamatsu | 0955ef3 | 2008-06-17 16:27:38 +0900 | [diff] [blame] | 2 | * Copyright (C) 2007,2008 |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 3 | * Nobuhiro Iwamatsu <iwamatsu@nigauri.org> |
| 4 | * |
| 5 | * Copyright (C) 2007 |
| 6 | * Kenati Technologies, Inc. |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 7 | * |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 8 | * board/ms7722se/ms7722se.c |
| 9 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
Ben Warren | 7194ab8 | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 14 | #include <netdev.h> |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 15 | #include <asm/io.h> |
| 16 | #include <asm/processor.h> |
| 17 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 20 | #define LED_BASE 0xB0800000 |
| 21 | |
| 22 | int checkboard(void) |
| 23 | { |
| 24 | puts("BOARD: Hitachi UL MS7722SE\n"); |
| 25 | return 0; |
| 26 | } |
| 27 | |
| 28 | int board_init(void) |
| 29 | { |
| 30 | /* Setup PTXMD[1:0] for /CS6A */ |
| 31 | outw(inw(PXCR) & ~0xf000, PXCR); |
| 32 | |
| 33 | return 0; |
| 34 | } |
| 35 | |
Nobuhiro Iwamatsu | 0955ef3 | 2008-06-17 16:27:38 +0900 | [diff] [blame] | 36 | int dram_init(void) |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 37 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 38 | gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; |
| 39 | gd->bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE; |
| 40 | printf("DRAM: %dMB\n", CONFIG_SYS_SDRAM_SIZE / (1024 * 1024)); |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 41 | return 0; |
| 42 | } |
| 43 | |
Nobuhiro Iwamatsu | 0955ef3 | 2008-06-17 16:27:38 +0900 | [diff] [blame] | 44 | void led_set_state(unsigned short value) |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 45 | { |
Nobuhiro Iwamatsu | 0955ef3 | 2008-06-17 16:27:38 +0900 | [diff] [blame] | 46 | writew(value & 0xFF, LED_BASE); |
Nobuhiro Iwamatsu | 6c0bbdc | 2007-09-23 02:31:13 +0900 | [diff] [blame] | 47 | } |
Ben Warren | 7194ab8 | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 48 | |
| 49 | #ifdef CONFIG_CMD_NET |
| 50 | int board_eth_init(bd_t *bis) |
| 51 | { |
| 52 | int rc = 0; |
| 53 | #ifdef CONFIG_SMC91111 |
| 54 | rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); |
| 55 | #endif |
| 56 | return rc; |
| 57 | } |
| 58 | #endif |