Simon Glass | 8ef0757 | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) 2014 Google, Inc | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: GPL-2.0+ | ||||
5 | */ | ||||
6 | |||||
7 | #include <common.h> | ||||
Simon Glass | 22e131c | 2014-11-14 20:56:45 -0700 | [diff] [blame] | 8 | #include <cros_ec.h> |
Simon Glass | 801f4f1 | 2015-03-05 12:25:32 -0700 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | 437c2b7 | 2014-11-12 22:42:25 -0700 | [diff] [blame] | 10 | #include <asm/gpio.h> |
Bin Meng | 2795573 | 2014-12-12 21:05:23 +0800 | [diff] [blame] | 11 | #include <asm/io.h> |
12 | #include <asm/pci.h> | ||||
13 | #include <asm/arch/pch.h> | ||||
Simon Glass | 8ef0757 | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 14 | |
15 | int arch_early_init_r(void) | ||||
16 | { | ||||
17 | return 0; | ||||
18 | } | ||||
19 | |||||
Simon Glass | 437c2b7 | 2014-11-12 22:42:25 -0700 | [diff] [blame] | 20 | int board_early_init_f(void) |
21 | { | ||||
Simon Glass | 437c2b7 | 2014-11-12 22:42:25 -0700 | [diff] [blame] | 22 | return 0; |
23 | } |