Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 6388e35 | 2015-04-28 20:25:10 -0600 | [diff] [blame] | 8 | #include <asm/sfi.h> |
Bin Meng | 07545d8 | 2015-06-23 12:18:52 +0800 | [diff] [blame] | 9 | #include <asm/mpspec.h> |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 10 | #include <asm/tables.h> |
| 11 | |
| 12 | u8 table_compute_checksum(void *v, int len) |
| 13 | { |
| 14 | u8 *bytes = v; |
| 15 | u8 checksum = 0; |
| 16 | int i; |
| 17 | |
| 18 | for (i = 0; i < len; i++) |
| 19 | checksum -= bytes[i]; |
| 20 | |
| 21 | return checksum; |
| 22 | } |
| 23 | |
Bin Meng | 7f5df8d | 2015-06-23 12:18:51 +0800 | [diff] [blame] | 24 | void table_fill_string(char *dest, const char *src, size_t n, char pad) |
| 25 | { |
| 26 | int start, len; |
| 27 | int i; |
| 28 | |
| 29 | strncpy(dest, src, n); |
| 30 | |
| 31 | /* Fill the remaining bytes with pad */ |
| 32 | len = strlen(src); |
| 33 | start = len < n ? len : n; |
| 34 | for (i = start; i < n; i++) |
| 35 | dest[i] = pad; |
| 36 | } |
| 37 | |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 38 | void write_tables(void) |
| 39 | { |
| 40 | u32 __maybe_unused rom_table_end = ROM_TABLE_ADDR; |
| 41 | |
Bin Meng | cc4c8ac | 2015-04-28 18:37:03 +0800 | [diff] [blame] | 42 | #ifdef CONFIG_GENERATE_PIRQ_TABLE |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 43 | rom_table_end = write_pirq_routing_table(rom_table_end); |
| 44 | rom_table_end = ALIGN(rom_table_end, 1024); |
| 45 | #endif |
Simon Glass | 6388e35 | 2015-04-28 20:25:10 -0600 | [diff] [blame] | 46 | #ifdef CONFIG_GENERATE_SFI_TABLE |
| 47 | rom_table_end = write_sfi_table(rom_table_end); |
| 48 | rom_table_end = ALIGN(rom_table_end, 1024); |
| 49 | #endif |
Bin Meng | 07545d8 | 2015-06-23 12:18:52 +0800 | [diff] [blame] | 50 | #ifdef CONFIG_GENERATE_MP_TABLE |
| 51 | rom_table_end = write_mp_table(rom_table_end); |
| 52 | rom_table_end = ALIGN(rom_table_end, 1024); |
| 53 | #endif |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 54 | } |