Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 2 | /* |
Nobuhiro Iwamatsu | d76619d | 2008-03-12 18:02:57 +0900 | [diff] [blame] | 3 | * Copyright (C) 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org> |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 4 | * Copyright (C) 2008 Yusuke Goda <goda.yusuke@renesas.com> |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <ide.h> |
| 9 | #include <asm/processor.h> |
| 10 | #include <asm/io.h> |
| 11 | #include <asm/pci.h> |
Ben Warren | 26425a6 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 12 | #include <netdev.h> |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 13 | #include "r7780mp.h" |
| 14 | |
| 15 | int checkboard(void) |
| 16 | { |
| 17 | #if defined(CONFIG_R7780MP) |
| 18 | puts("BOARD: Renesas Solutions R7780MP\n"); |
| 19 | #else |
| 20 | puts("BOARD: Renesas Solutions R7780RP\n"); |
| 21 | #endif |
| 22 | return 0; |
| 23 | } |
| 24 | |
| 25 | int board_init(void) |
| 26 | { |
| 27 | /* SCIF Enable */ |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 28 | writew(0x0, PHCR); |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 29 | |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 30 | return 0; |
| 31 | } |
| 32 | |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 33 | void led_set_state(unsigned short value) |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 34 | { |
| 35 | |
| 36 | } |
| 37 | |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 38 | void ide_set_reset(int idereset) |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 39 | { |
| 40 | /* if reset = 1 IDE reset will be asserted */ |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 41 | if (idereset) { |
| 42 | writew(0x432, FPGA_CFCTL); |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 43 | #if defined(CONFIG_R7780MP) |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 44 | writew(inw(FPGA_CFPOW)|0x01, FPGA_CFPOW); |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 45 | #else |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 46 | writew(inw(FPGA_CFPOW)|0x02, FPGA_CFPOW); |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 47 | #endif |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 48 | writew(0x01, FPGA_CFCDINTCLR); |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 49 | } |
| 50 | } |
| 51 | |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 52 | static struct pci_controller hose; |
| 53 | void pci_init_board(void) |
| 54 | { |
Nobuhiro Iwamatsu | 9aa0bd7 | 2008-06-17 16:27:41 +0900 | [diff] [blame] | 55 | pci_sh7780_init(&hose); |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 56 | } |
Ben Warren | 26425a6 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 57 | |
| 58 | int board_eth_init(bd_t *bis) |
| 59 | { |
Bernhard Kaindl | adb18ea | 2011-10-20 10:56:59 +0000 | [diff] [blame] | 60 | /* return >= 0 if a chip is found, the board's AX88796L is n2k-based */ |
| 61 | return ne2k_register() + pci_eth_init(bis); |
Ben Warren | 26425a6 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 62 | } |