board.h 441 B

123456789101112131415161718
  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. #ifndef __BOARD_H__
  11. #define __BOARD_H__
  12. #define APB_DEFAULT_FREQ 20000000 /* Hz */
  13. #define E906FD_IRAM_SIZE 128
  14. #define E906FD_IRAM_END (0x20000000 + E906FD_IRAM_SIZE * 1024)
  15. #endif /* __BOARD_H__ */