Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Eric Nelson | baefb63 | 2017-12-11 13:52:11 -0200 | [diff] [blame] | 2 | /* |
| 3 | * mx6memcal board support - provides a minimal, UART-only |
| 4 | * U-Boot that's capable of running a memory test. |
| 5 | * |
| 6 | * Copyright (C) 2016 Nelson Integration, LLC |
| 7 | * Author: Eric Nelson <eric@nelint.com> |
Eric Nelson | baefb63 | 2017-12-11 13:52:11 -0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Eric Nelson | baefb63 | 2017-12-11 13:52:11 -0200 | [diff] [blame] | 12 | #include <asm/arch/sys_proto.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Eric Nelson | baefb63 | 2017-12-11 13:52:11 -0200 | [diff] [blame] | 14 | |
| 15 | DECLARE_GLOBAL_DATA_PTR; |
| 16 | |
| 17 | int board_init(void) |
| 18 | { |
| 19 | return 0; |
| 20 | } |
| 21 | |
| 22 | int checkboard(void) |
| 23 | { |
| 24 | puts("Board: mx6memcal\n"); |
| 25 | return 0; |
| 26 | } |
| 27 | |
| 28 | int dram_init(void) |
| 29 | { |
| 30 | gd->ram_size = imx_ddr_size(); |
| 31 | return 0; |
| 32 | } |