Alexey Brodkin | 95f7103 | 2019-12-26 14:47:42 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2020 Synopsys, Inc. All rights reserved. |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 7 | #include <init.h> |
Alexey Brodkin | 95f7103 | 2019-12-26 14:47:42 +0300 | [diff] [blame] | 8 | #include <dm/device.h> |
| 9 | #include <virtio_types.h> |
| 10 | #include <virtio.h> |
| 11 | |
| 12 | int board_early_init_r(void) |
| 13 | { |
| 14 | /* |
| 15 | * Make sure virtio bus is enumerated so that peripherals |
| 16 | * on the virtio bus can be discovered by their drivers |
| 17 | */ |
| 18 | virtio_init(); |
| 19 | |
| 20 | return 0; |
| 21 | } |
| 22 | |
| 23 | int checkboard(void) |
| 24 | { |
| 25 | printf("Board: ARC virtual or prototyping platform\n"); |
| 26 | return 0; |
| 27 | }; |