Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007 Michal Simek |
| 4 | * |
| 5 | * Michal SIMEK <monstr@monstr.eu> |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* This is a board specific file. It's OK to include board specific |
| 9 | * header files */ |
| 10 | |
| 11 | #include <common.h> |
Michal Simek | dda9bd8 | 2007-03-30 22:52:09 +0200 | [diff] [blame] | 12 | #include <config.h> |
Michal Simek | 65e915c | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 13 | #include <fdtdec.h> |
Michal Simek | 9cabb36 | 2012-07-04 13:12:37 +0200 | [diff] [blame] | 14 | #include <asm/processor.h> |
Michal Simek | 9c817f8 | 2007-05-07 19:33:51 +0200 | [diff] [blame] | 15 | #include <asm/microblaze_intc.h> |
| 16 | #include <asm/asm.h> |
Michal Simek | 23ccda0 | 2013-04-24 10:01:20 +0200 | [diff] [blame] | 17 | #include <asm/gpio.h> |
| 18 | |
Michal Simek | 65e915c | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Michal Simek | 23ccda0 | 2013-04-24 10:01:20 +0200 | [diff] [blame] | 21 | #ifdef CONFIG_XILINX_GPIO |
| 22 | static int reset_pin = -1; |
| 23 | #endif |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 24 | |
Michal Simek | 65e915c | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 25 | ulong ram_base; |
| 26 | |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 27 | int dram_init_banksize(void) |
Michal Simek | 65e915c | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 28 | { |
| 29 | gd->bd->bi_dram[0].start = ram_base; |
| 30 | gd->bd->bi_dram[0].size = get_effective_memsize(); |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 31 | |
| 32 | return 0; |
Michal Simek | 65e915c | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | int dram_init(void) |
| 36 | { |
| 37 | int node; |
| 38 | fdt_addr_t addr; |
| 39 | fdt_size_t size; |
| 40 | const void *blob = gd->fdt_blob; |
| 41 | |
| 42 | node = fdt_node_offset_by_prop_value(blob, -1, "device_type", |
| 43 | "memory", 7); |
| 44 | if (node == -FDT_ERR_NOTFOUND) { |
| 45 | debug("DRAM: Can't get memory node\n"); |
| 46 | return 1; |
| 47 | } |
| 48 | addr = fdtdec_get_addr_size(blob, node, "reg", &size); |
| 49 | if (addr == FDT_ADDR_T_NONE || size == 0) { |
| 50 | debug("DRAM: Can't get base address or size\n"); |
| 51 | return 1; |
| 52 | } |
| 53 | ram_base = addr; |
| 54 | |
| 55 | gd->ram_top = addr; /* In setup_dest_addr() is done +ram_size */ |
| 56 | gd->ram_size = size; |
| 57 | |
| 58 | return 0; |
| 59 | }; |
Michal Simek | 65e915c | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 60 | |
Mike Frysinger | 6d1f698 | 2010-10-20 03:41:17 -0400 | [diff] [blame] | 61 | int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 62 | { |
Michal Simek | 8cd2491 | 2015-12-09 11:53:25 +0100 | [diff] [blame] | 63 | #ifndef CONFIG_SPL_BUILD |
Michal Simek | 23ccda0 | 2013-04-24 10:01:20 +0200 | [diff] [blame] | 64 | #ifdef CONFIG_XILINX_GPIO |
| 65 | if (reset_pin != -1) |
| 66 | gpio_direction_output(reset_pin, 1); |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 67 | #endif |
Michal Simek | 25d20af | 2012-11-02 09:33:05 +0100 | [diff] [blame] | 68 | |
Michal Simek | 80e045f | 2013-04-22 11:23:16 +0200 | [diff] [blame] | 69 | #ifdef CONFIG_XILINX_TB_WATCHDOG |
| 70 | hw_watchdog_disable(); |
| 71 | #endif |
Michal Simek | 8cd2491 | 2015-12-09 11:53:25 +0100 | [diff] [blame] | 72 | #endif |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 73 | puts ("Reseting board\n"); |
Michal Simek | c944687 | 2012-11-07 15:27:39 +0100 | [diff] [blame] | 74 | __asm__ __volatile__ (" mts rmsr, r0;" \ |
| 75 | "bra r0"); |
Michal Simek | 25d20af | 2012-11-02 09:33:05 +0100 | [diff] [blame] | 76 | |
Mike Frysinger | 6d1f698 | 2010-10-20 03:41:17 -0400 | [diff] [blame] | 77 | return 0; |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 78 | } |
| 79 | |
Michal Simek | 0152524 | 2015-12-11 15:01:28 +0100 | [diff] [blame] | 80 | static int gpio_init(void) |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 81 | { |
Michal Simek | 23ccda0 | 2013-04-24 10:01:20 +0200 | [diff] [blame] | 82 | #ifdef CONFIG_XILINX_GPIO |
| 83 | reset_pin = gpio_alloc(CONFIG_SYS_GPIO_0_ADDR, "reset", 1); |
| 84 | if (reset_pin != -1) |
| 85 | gpio_request(reset_pin, "reset_pin"); |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 86 | #endif |
| 87 | return 0; |
| 88 | } |
Michal Simek | 9c817f8 | 2007-05-07 19:33:51 +0200 | [diff] [blame] | 89 | |
Michal Simek | 0152524 | 2015-12-11 15:01:28 +0100 | [diff] [blame] | 90 | int board_late_init(void) |
Michal Simek | 9cabb36 | 2012-07-04 13:12:37 +0200 | [diff] [blame] | 91 | { |
| 92 | gpio_init(); |
Michal Simek | 0152524 | 2015-12-11 15:01:28 +0100 | [diff] [blame] | 93 | |
| 94 | return 0; |
Michal Simek | 9cabb36 | 2012-07-04 13:12:37 +0200 | [diff] [blame] | 95 | } |