Usama Arif | 9218a11 | 2020-08-12 16:12:53 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * (C) Copyright 2020 Arm Limited |
| 4 | * Usama Arif <usama.arif@arm.com> |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <dm.h> |
| 9 | #include <dm/platform_data/serial_pl01x.h> |
| 10 | #include <asm/armv8/mmu.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 11 | #include <asm/global_data.h> |
Usama Arif | 9218a11 | 2020-08-12 16:12:53 +0100 | [diff] [blame] | 12 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 13 | static const struct pl01x_serial_plat serial_plat = { |
Usama Arif | 9218a11 | 2020-08-12 16:12:53 +0100 | [diff] [blame] | 14 | .base = UART0_BASE, |
| 15 | .type = TYPE_PL011, |
| 16 | .clock = CONFIG_PL011_CLOCK, |
| 17 | }; |
| 18 | |
Simon Glass | 1d8364a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 19 | U_BOOT_DRVINFO(total_compute_serials) = { |
Usama Arif | 9218a11 | 2020-08-12 16:12:53 +0100 | [diff] [blame] | 20 | .name = "serial_pl01x", |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 21 | .plat = &serial_plat, |
Usama Arif | 9218a11 | 2020-08-12 16:12:53 +0100 | [diff] [blame] | 22 | }; |
| 23 | |
| 24 | static struct mm_region total_compute_mem_map[] = { |
| 25 | { |
| 26 | .virt = 0x0UL, |
| 27 | .phys = 0x0UL, |
| 28 | .size = 0x80000000UL, |
| 29 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 30 | PTE_BLOCK_NON_SHARE | |
| 31 | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
| 32 | }, { |
| 33 | .virt = 0x80000000UL, |
| 34 | .phys = 0x80000000UL, |
| 35 | .size = 0xff80000000UL, |
| 36 | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | |
| 37 | PTE_BLOCK_INNER_SHARE |
| 38 | }, { |
| 39 | /* List terminator */ |
| 40 | 0, |
| 41 | } |
| 42 | }; |
| 43 | |
| 44 | struct mm_region *mem_map = total_compute_mem_map; |
| 45 | |
| 46 | int board_init(void) |
| 47 | { |
| 48 | return 0; |
| 49 | } |
| 50 | |
| 51 | int dram_init(void) |
| 52 | { |
| 53 | gd->ram_size = PHYS_SDRAM_1_SIZE; |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | int dram_init_banksize(void) |
| 58 | { |
| 59 | gd->bd->bi_dram[0].start = PHYS_SDRAM_1; |
| 60 | gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
| 65 | /* Nothing to be done here as handled by PSCI interface */ |
| 66 | void reset_cpu(ulong addr) |
| 67 | { |
| 68 | } |