source: rtems/c/src/lib/libbsp/riscv/riscv/configure.ac @ 5694b0c

5
Last change on this file since 5694b0c was 1a19239, checked in by Sebastian Huber <sebastian.huber@…>, on 07/06/18 at 09:20:31

bsp/riscv: Add console support for NS16550 devices

Update #3433.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1##
2#
3# @file
4#
5# @brief Configure script of LibBSP for riscv BSP.
6#
7
8AC_PREREQ([2.69])
9AC_INIT([rtems-c-src-lib-libbsp-riscv],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
10RTEMS_TOP(../../../../../..)
11RTEMS_SOURCE_TOP
12RTEMS_BUILD_TOP
13
14RTEMS_CANONICAL_TARGET_CPU
15AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
16RTEMS_BSP_CONFIGURE
17
18RTEMS_BSPOPTS_SET([BSP_START_COPY_FDT_FROM_U_BOOT],[*],[1])
19RTEMS_BSPOPTS_HELP([BSP_START_COPY_FDT_FROM_U_BOOT],[copy the U-Boot provided FDT to an internal storage])
20
21RTEMS_BSPOPTS_SET([BSP_FDT_BLOB_SIZE_MAX],[*],[65536])
22RTEMS_BSPOPTS_HELP([BSP_FDT_BLOB_SIZE_MAX],[maximum size of the FDT blob in bytes])
23
24RTEMS_BSPOPTS_SET([BSP_FDT_BLOB_READ_ONLY],[*],[1])
25RTEMS_BSPOPTS_HELP([BSP_FDT_BLOB_READ_ONLY],[place the FDT blob into the read-only data area])
26
27RTEMS_BSPOPTS_SET([BSP_FDT_BLOB_COPY_TO_READ_ONLY_LOAD_AREA],[*],[1])
28RTEMS_BSPOPTS_HELP([BSP_FDT_BLOB_COPY_TO_READ_ONLY_LOAD_AREA],[copy the FDT blob into the read-only load area via bsp_fdt_copy()])
29
30RTEMS_BSPOPTS_SET([BSP_CONSOLE_BAUD],[*],[115200])
31RTEMS_BSPOPTS_HELP([BSP_CONSOLE_BAUD],[default baud for console driver devices (default 115200)])
32
33RTEMS_BSPOPTS_SET([RISCV_ENABLE_HTIF_SUPPORT],[*],[1])
34RTEMS_BSPOPTS_HELP([RISCV_ENABLE_HTIF_SUPPORT],[enables the HTIF support if defined to a non-zero value, otherwise it is disabled (enabled by default)])
35
36RTEMS_BSPOPTS_SET([RISCV_CONSOLE_MAX_NS16550_DEVICES],[*],[2])
37RTEMS_BSPOPTS_HELP([RISCV_CONSOLE_MAX_NS16550_DEVICES],[maximum number of NS16550 devices supported by the console driver (2 by default)])
38
39RTEMS_BSP_CLEANUP_OPTIONS
40
41case "${RTEMS_BSP}" in
42  rv64*medany)
43    RISCV_RAM_REGION_BEGIN_DEFAULT=0x80000000
44    ;;
45  rv64*)
46    RISCV_RAM_REGION_BEGIN_DEFAULT=0x70000000
47    ;;
48  *)
49    RISCV_RAM_REGION_BEGIN_DEFAULT=0x80000000
50    ;;
51esac
52
53AC_DEFUN([RISCV_LINKCMD],[
54AC_ARG_VAR([$1],[$2])dnl
55[$1]=[$]{[$1]:-[$3]}
56])
57
58RISCV_LINKCMD([RISCV_RAM_REGION_BEGIN],[begin of the RAM region for linker command file (default is 0x70000000 for 64-bit with -mcmodel=medlow and 0x80000000 for all other)],[${RISCV_RAM_REGION_BEGIN_DEFAULT}])
59RISCV_LINKCMD([RISCV_RAM_REGION_SIZE],[size of the RAM region for linker command file (default 64MiB)],[0x04000000])
60
61AC_CONFIG_FILES([
62Makefile
63linkcmds:../../../../../../bsps/riscv/riscv/start/linkcmds.in
64])
65AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.