Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007 |
Vlad Lungu | 045b4d2 | 2008-05-05 14:20:03 +0300 | [diff] [blame] | 4 | * Vlad Lungu vlad.lungu@windriver.com |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
| 9 | #include <asm/mipsregs.h> |
| 10 | #include <asm/io.h> |
Bernhard Kaindl | d020169 | 2011-10-20 10:56:59 +0000 | [diff] [blame] | 11 | #include <netdev.h> |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 12 | |
Simon Glass | 088454c | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 13 | DECLARE_GLOBAL_DATA_PTR; |
| 14 | |
Simon Glass | f1683aa | 2017-04-06 12:47:05 -0600 | [diff] [blame] | 15 | int dram_init(void) |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 16 | { |
| 17 | /* Sdram is setup by assembler code */ |
| 18 | /* If memory could be changed, we should return the true value here */ |
Simon Glass | 088454c | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 19 | gd->ram_size = MEM_SIZE * 1024 * 1024; |
| 20 | |
| 21 | return 0; |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | int checkboard(void) |
| 25 | { |
| 26 | u32 proc_id; |
| 27 | u32 config1; |
| 28 | |
Shinya Kuribayashi | e2ad842 | 2008-05-30 00:53:38 +0900 | [diff] [blame] | 29 | proc_id = read_c0_prid(); |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 30 | printf("Board: Qemu -M mips CPU: "); |
| 31 | switch (proc_id) { |
| 32 | case 0x00018000: |
| 33 | printf("4Kc"); |
| 34 | break; |
| 35 | case 0x00018400: |
| 36 | printf("4KEcR1"); |
| 37 | break; |
| 38 | case 0x00019000: |
| 39 | printf("4KEc"); |
| 40 | break; |
| 41 | case 0x00019300: |
Shinya Kuribayashi | e2ad842 | 2008-05-30 00:53:38 +0900 | [diff] [blame] | 42 | config1 = read_c0_config1(); |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 43 | if (config1 & 1) |
| 44 | printf("24Kf"); |
| 45 | else |
| 46 | printf("24Kc"); |
| 47 | break; |
| 48 | case 0x00019500: |
| 49 | printf("34Kf"); |
| 50 | break; |
| 51 | case 0x00000400: |
| 52 | printf("R4000"); |
| 53 | break; |
| 54 | case 0x00018100: |
Shinya Kuribayashi | e2ad842 | 2008-05-30 00:53:38 +0900 | [diff] [blame] | 55 | config1 = read_c0_config1(); |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 56 | if (config1 & 1) |
| 57 | printf("5Kf"); |
| 58 | else |
| 59 | printf("5Kc"); |
| 60 | break; |
| 61 | case 0x000182a0: |
| 62 | printf("20Kc"); |
| 63 | break; |
| 64 | |
| 65 | default: |
| 66 | printf("unknown"); |
| 67 | } |
| 68 | printf(" proc_id=0x%x\n", proc_id); |
| 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | int misc_init_r(void) |
| 74 | { |
| 75 | set_io_port_base(0); |
| 76 | return 0; |
| 77 | } |
Bernhard Kaindl | d020169 | 2011-10-20 10:56:59 +0000 | [diff] [blame] | 78 | |
| 79 | int board_eth_init(bd_t *bis) |
| 80 | { |
| 81 | return ne2k_register(); |
| 82 | } |