1 /*
2  * Copyright (C) 2017-2019 Alibaba Group Holding Limited
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2020-08-20     zx.chen      add E906 ram size
9  */
10 
11 #ifndef __BOARD_H__
12 #define __BOARD_H__
13 
14 #define APB_DEFAULT_FREQ         20000000   /* Hz */
15 #define E906FD_IRAM_SIZE         128
16 #define E906FD_IRAM_END          (0x20000000 + E906FD_IRAM_SIZE * 1024)
17 
18 #endif /* __BOARD_H__ */
19