blob: 0a97b8a18183223b841fe38502c3d2c0d7f64cd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef __CROS_EC_BOARD_CONFIG_H
#define __CROS_EC_BOARD_CONFIG_H
#include "common.h"
#ifdef CONFIG_BOARD_PRE_INIT
/**
* Configure board before any inits are called.
*
* Note that this is in general a hacky place to do configuration. Most config
* is actually chip-specific or module-specific and not board-specific, so
* putting it here hides dependencies between module inits and board init.
* Think very hard before putting code here.
*/
void board_config_pre_init(void);
#endif
#ifdef CONFIG_BOARD_POST_GPIO_INIT
/**
* Configure board after GPIOs are initialized.
*
* Note that this is in general a hacky place to do configuration. Most config
* is actually chip-specific or module-specific and not board-specific, so
* putting it here hides dependencies between module inits and board init.
* Think very hard before putting code here.
*/
void board_config_post_gpio_init(void);
#endif
#endif /* __CROS_EC_BOARD_CONFIG_H */
|