449 lines
15 KiB
C
449 lines
15 KiB
C
/*
|
|
* (C) Copyright 2007-2011
|
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
|
* Jerry Wang<wangflord@allwinnertech.com>
|
|
*
|
|
* See file CREDITS for list of people who contributed to this
|
|
* project.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef __WINE_CONFIG_H
|
|
#define __WINE_CONFIG_H
|
|
|
|
#include <asm/arch/platform.h>
|
|
|
|
#undef DEBUG
|
|
|
|
#ifndef __KERNEL__
|
|
#define __KERNEL__
|
|
#endif
|
|
|
|
//#define DEBUG
|
|
|
|
//c#define FPGA_PLATFORM
|
|
#define LINUX_MACHINE_ID 4137
|
|
|
|
#define UBOOT_VERSION "3.0.0"
|
|
#define UBOOT_PLATFORM "1.0.0"
|
|
|
|
#define CONFIG_STORAGE_MEDIA_NAND
|
|
#define CONFIG_STORAGE_MEDIA_MMC
|
|
/*#define CONFIG_STORAGE_MEDIA_SPINOR*/
|
|
|
|
#define CONFIG_TARGET_NAME sun50iw1p1
|
|
#define CONFIG_SYS_GENERIC_BOARD
|
|
|
|
|
|
#define HAVE_VENDOR_COMMON_LIB
|
|
/*
|
|
* High Level Configuration Options
|
|
*/
|
|
//#define CONFIG_SUNXI_WINE
|
|
//#define CONFIG_SUNXI_WINE_FPGA
|
|
#define CONFIG_ARM_A53
|
|
#define CONFIG_ALLWINNER /* It's a Allwinner chip */
|
|
#define CONFIG_SUNXI /* which is sunxi family */
|
|
#define CONFIG_ARCH_SUN50IW1P1
|
|
|
|
//#define CONFIG_SUNXI_SECURE_STORAGE
|
|
//#define CONFIG_SUNXI_SECURE_SYSTEM
|
|
//#define CONFIG_SUNXI_HDCP_IN_SECURESTORAGE
|
|
|
|
|
|
#define CONFIG_SYS_SRAM_BASE (0x10000)
|
|
#define CONFIG_SYS_SRAM_SIZE (0x8000)
|
|
#define CONFIG_SYS_SRAMA2_BASE (0x40000)
|
|
#define CONFIG_SYS_SRAMA2_SIZE (0x14000)
|
|
#define BOOT0_MMU_BASE_ADDRESS (CONFIG_SYS_SRAMA2_BASE + 0x4000)
|
|
#define TOC0_MMU_BASE_ADDRESS (CONFIG_SYS_SRAMA2_BASE + 0x4000)
|
|
#define CONFIG_BOOT0_STACK_BOTTOM (CONFIG_SYS_SRAM_BASE+CONFIG_SYS_SRAM_SIZE-0x10)
|
|
|
|
|
|
#define PLAT_SDRAM_BASE 0x40000000
|
|
//trusted dram area
|
|
#define PLAT_TRUSTED_DRAM_BASE (PLAT_SDRAM_BASE)
|
|
#define PLAT_TRUSTED_DRAM_SIZE 0x01000000
|
|
//uboot run addr
|
|
#define CONFIG_SYS_TEXT_BASE 0x4A000000
|
|
//dram base for uboot
|
|
#define CONFIG_SYS_SDRAM_BASE (PLAT_SDRAM_BASE+PLAT_TRUSTED_DRAM_SIZE)
|
|
//base addr for boot 0 to load the fw image
|
|
#define BL31_BASE (PLAT_TRUSTED_DRAM_BASE) //bl31:0x40000000-0x40200000
|
|
#define BL31_SIZE (0x100000) //1M
|
|
//#define BL32_BASE (PLAT_TRUSTED_DRAM_BASE+0x00200000)
|
|
//#define BL33_BASE (CONFIG_SYS_TEXT_BASE)
|
|
#define SCP_SRAM_BASE (CONFIG_SYS_SRAMA2_BASE)
|
|
#define SCP_SRAM_SIZE (CONFIG_SYS_SRAMA2_SIZE)
|
|
#define SCP_DRAM_BASE (PLAT_TRUSTED_DRAM_BASE+BL31_SIZE)
|
|
#define SCP_DRAM_SIZE (0x4000)
|
|
|
|
//fdt addr for kernel
|
|
#define CONFIG_SUNXI_FDT_ADDR (CONFIG_SYS_SDRAM_BASE+0x04000000)
|
|
|
|
//serial number
|
|
#define CONFIG_SUNXI_SERIAL
|
|
// the sram base address, and the stack address in stage1
|
|
#define CONFIG_SYS_INIT_RAM_ADDR 0x10000
|
|
#define CONFIG_SYS_INIT_RAM_SIZE 0x00007ff0
|
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET \
|
|
(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
|
|
#define CONFIG_SYS_INIT_SP_ADDR \
|
|
(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
|
|
|
|
//for usb efex -- tools private data
|
|
#define SRAM_AREA_A CONFIG_SYS_INIT_RAM_ADDR
|
|
|
|
#define CONFIG_NR_DRAM_BANKS 1
|
|
#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE /* SDRAM Bank #1 */
|
|
#define PHYS_SDRAM_1_SIZE (512 << 20) /* 0x20000000, 512 MB Bank #1 */
|
|
|
|
#define CONFIG_NONCACHE_MEMORY
|
|
#define CONFIG_NONCACHE_MEMORY_SIZE (16 * 1024 * 1024)
|
|
/*
|
|
* define malloc space
|
|
* Size of malloc() pool
|
|
* 1MB = 0x100000, 0x100000 = 1024 * 1024
|
|
*/
|
|
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 20))
|
|
|
|
|
|
|
|
#define FASTBOOT_TRANSFER_BUFFER (CONFIG_SYS_SDRAM_BASE + 0x01000000)
|
|
#define FASTBOOT_TRANSFER_BUFFER_SIZE (256 << 20)
|
|
|
|
#define FASTBOOT_ERASE_BUFFER (CONFIG_SYS_SDRAM_BASE)
|
|
#define FASTBOOT_ERASE_BUFFER_SIZE (16 << 20)
|
|
|
|
/* SMP Definitions */
|
|
#define CPU_RELEASE_ADDR CONFIG_SYS_INIT_SP_ADDR
|
|
/* Generic Timer Definitions */
|
|
#define COUNTER_FREQUENCY 0x18000000 /* 24MHz */
|
|
/*
|
|
* define all parameters
|
|
*/
|
|
#define FEL_BASE 0x20
|
|
#define SUNXI_RUN_EFEX_FLAG (0x5AA5A55A)
|
|
|
|
|
|
|
|
#define SUNXI_RUN_EFEX_ADDR (0x01f00000 + 0x108)
|
|
#define DRAM_PARA_STORE_ADDR (CONFIG_SYS_SDRAM_BASE + 0x00800000)
|
|
#define SYS_CONFIG_MEMBASE (CONFIG_SYS_SDRAM_BASE + 0x00010000)
|
|
|
|
//#define CONFIG_SUNXI_LOGBUFFER
|
|
#define SUNXI_DISPLAY_FRAME_BUFFER_ADDR (CONFIG_SYS_SDRAM_BASE + 0x06400000)
|
|
#define SUNXI_DISPLAY_FRAME_BUFFER_SIZE 0x01000000
|
|
|
|
|
|
/*
|
|
* define const value
|
|
*/
|
|
#define BOOT_USB_DETECT_DELAY_TIME (1000)
|
|
|
|
#define FW_BURN_UDISK_MIN_SIZE (2 * 1024)
|
|
|
|
|
|
|
|
#define BOOT_MOD_ENTER_STANDBY (0)
|
|
#define BOOT_MOD_EXIT_STANDBY (1)
|
|
|
|
#define MEMCPY_TEST_DST (CONFIG_SYS_SDRAM_BASE)
|
|
#define MEMCPY_TEST_SRC (CONFIG_SYS_SDRAM_BASE + 0x06000000)
|
|
|
|
/****************************************************************************************/
|
|
/* */
|
|
/* the fowllowing defines are used in sbrom */
|
|
/* */
|
|
/****************************************************************************************/
|
|
#define BOOT_PUB_HEAD_VERSION "1100"
|
|
#define EGON_VERSION "1100"
|
|
|
|
#define SUNXI_DRAM_PARA_MAX 32
|
|
|
|
|
|
|
|
#define CONFIG_SBROMSW_BASE (CONFIG_SYS_SRAM_BASE)
|
|
//#define CONFIG_STACK_BASE (CONFIG_SYS_SRAMA2_BASE + CONFIG_SYS_SRAMA2_SIZE - 0x10)
|
|
#define CONFIG_STACK_BASE (0x3f000)
|
|
|
|
#define CONFIG_HEAP_BASE (CONFIG_SYS_SDRAM_BASE + 0x800000)
|
|
#define CONFIG_HEAP_SIZE (16 * 1024 * 1024)
|
|
|
|
#define CONFIG_SUNXI_CHIPID
|
|
#define CONFIG_BOOT0_RET_ADDR (CONFIG_SYS_SRAM_BASE)
|
|
#define CONFIG_BOOT0_RUN_ADDR (0x10000)
|
|
|
|
#define CONFIG_FES1_RET_ADDR (CONFIG_SYS_SRAM_BASE)
|
|
#define CONFIG_FES1_RUN_ADDR (0x10000)
|
|
|
|
#define CONFIG_TOC0_RET_ADDR (0)
|
|
#define CONFIG_TOC0_RUN_ADDR (0x10480)
|
|
#define CONFIG_TOC0_CONFIG_ADDR (CONFIG_SBROMSW_BASE + 0x80)
|
|
#define CONFIG_TOC1_STORE_IN_DRAM_BASE (CONFIG_SYS_SDRAM_BASE + 0x2e00000)
|
|
|
|
#define PAGE_BUF_FOR_BOOT0 (CONFIG_SYS_SDRAM_BASE + 16 * 1024 * 1024)
|
|
|
|
#define SUNXI_FEL_ADDR_IN_SECURE (0x64)
|
|
/****************************************************************************************/
|
|
/* */
|
|
/* all the defines are finished */
|
|
/* */
|
|
/****************************************************************************************/
|
|
/***************************************************************
|
|
*
|
|
* all the config command
|
|
*
|
|
***************************************************************/
|
|
#define CONFIG_SUNXI_RSB
|
|
#define CONFIG_AXP_USE_RSB
|
|
#define CONFIG_USE_IRQ
|
|
#define CONFIG_CMD_IRQ
|
|
#define CONFIG_CMD_ELF
|
|
#define CONFIG_DOS_PARTITION
|
|
#define CONFIG_CMD_BOOTA
|
|
#define CONFIG_SUNXI_DMA
|
|
#define CONFIG_CMD_MEMORY
|
|
#define CONFIG_CMD_MEMINFO
|
|
|
|
|
|
#define SUNXI_DMA_LINK_NULL (0x1ffff800)
|
|
|
|
#define CONFIG_SUNXI_AXP
|
|
#define CONFIG_SUNXI_AXP81X
|
|
#define CONFIG_SUNXI_AXP_MAIN PMU_TYPE_81X
|
|
#define PMU_SCRIPT_NAME "/soc/pmu0"
|
|
#define CONFIG_SUNXI_AXP_CONFIG_ONOFF
|
|
|
|
|
|
//#define CONFIG_USE_ARCH_MEMCPY
|
|
#define CONFIG_USE_ARCH_MEMSET
|
|
/*
|
|
* Display CPU and Board information
|
|
*/
|
|
//#define CONFIG_DISPLAY_CPUINFO
|
|
//#define CONFIG_DISPLAY_BOARDINFO
|
|
#undef CONFIG_DISPLAY_CPUINFO
|
|
#undef CONFIG_DISPLAY_BOARDINFO
|
|
|
|
/* Serial & console */
|
|
#define CONFIG_SYS_NS16550
|
|
#define CONFIG_SYS_NS16550_SERIAL
|
|
#define CONFIG_SYS_NS16550_REG_SIZE (-4) /* ns16550 reg in the low bits of cpu reg */
|
|
#define CONFIG_SYS_NS16550_CLK (24000000)
|
|
#define CONFIG_SYS_NS16550_COM1 SUNXI_UART0_BASE
|
|
#define CONFIG_SYS_NS16550_COM2 SUNXI_UART1_BASE
|
|
#define CONFIG_SYS_NS16550_COM3 SUNXI_UART2_BASE
|
|
#define CONFIG_SYS_NS16550_COM4 SUNXI_UART3_BASE
|
|
|
|
#define CONFIG_CONS_INDEX 1 /* which serial channel for console */
|
|
|
|
|
|
/* Nand config */
|
|
#define CONFIG_NAND
|
|
#define CONFIG_STORAGE_NAND
|
|
#define CONFIG_NAND_SUNXI
|
|
//#define CONFIG_CMD_NAND /* NAND support */
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
#define CONFIG_SYS_NAND_BASE 0x00
|
|
|
|
#define CONFIG_SETUP_MEMORY_TAGS
|
|
#define CONFIG_CMDLINE_TAG
|
|
#define CONFIG_INITRD_TAG
|
|
#define CONFIG_CMDLINE_EDITING
|
|
|
|
/* mmc config */
|
|
#define CONFIG_MMC
|
|
#define CONFIG_GENERIC_MMC
|
|
#define CONFIG_CMD_MMC
|
|
#define CONFIG_MMC_SUNXI
|
|
#define CONFIG_MMC_SUNXI_USE_DMA
|
|
#define CONFIG_STORAGE_EMMC
|
|
#define CONFIG_MMC_LOGICAL_OFFSET (20 * 1024 * 1024/512)
|
|
|
|
#define CONFIG_DOS_PARTITION
|
|
/*
|
|
* Miscellaneous configurable options
|
|
*/
|
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
|
#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
|
|
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
|
#define CONFIG_SYS_PROMPT "sunxi#"
|
|
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
|
#define CONFIG_SYS_PBSIZE 384 /* Print Buffer Size */
|
|
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
|
|
|
/* Boot Argument Buffer Size */
|
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
|
|
/* memtest works on */
|
|
#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
|
|
#define CONFIG_SYS_MEMTEST_END ((CONFIG_SYS_SDRAM_BASE + 256)<<20) /* 256M */
|
|
#define CONFIG_SYS_LOAD_ADDR 0x50000000 /* default load address */
|
|
|
|
#define CONFIG_SYS_HZ 1000
|
|
|
|
/* valid baudrates */
|
|
#define CONFIG_BAUDRATE 115200
|
|
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
|
|
|
|
/*-----------------------------------------------------------------------
|
|
* Stack sizes
|
|
*
|
|
* The stack sizes are set up in start.S using the settings below
|
|
*/
|
|
#define CONFIG_STACKSIZE (256 << 10) /* 256 KiB */
|
|
#define LOW_LEVEL_SRAM_STACK 0x00013FFC
|
|
|
|
#ifdef CONFIG_USE_IRQ
|
|
#define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
|
|
#define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
|
|
#endif
|
|
|
|
/*-----------------------------------------------------------------------
|
|
* FLASH and environment organization
|
|
*/
|
|
#define CONFIG_SYS_NO_FLASH
|
|
|
|
#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* 256 KiB */
|
|
#define CONFIG_IDENT_STRING " Allwinner Technology "
|
|
|
|
#define CONFIG_ENV_IS_IN_SUNXI_FLASH /* we store env in one partition of our nand */
|
|
#define CONFIG_SUNXI_ENV_PARTITION "env" /* the partition name */
|
|
|
|
/*------------------------------------------------------------------------
|
|
* we save the environment in a nand partition, the partition name is defined
|
|
* in sysconfig.fex, which must be the same as CONFIG_SUNXI_NAND_ENV_PARTITION
|
|
* if not, below CONFIG_ENV_ADDR and CONFIG_ENV_SIZE will be where to store env.
|
|
* */
|
|
#define CONFIG_ENV_ADDR (53 << 20) /* 16M */
|
|
#define CONFIG_ENV_SIZE (128 << 10) /* 128KB */
|
|
#define CONFIG_CMD_SAVEENV
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"script=boot.scr\0" \
|
|
"mmcboot=run load_dtb load_kernel load_initrd set_cmdline boot_kernel\0" \
|
|
"console=ttyS0,115200\0" \
|
|
"root=/dev/mmcblk0p2\0" \
|
|
"boot_disk=0\0" \
|
|
"boot_part=0:1\0" \
|
|
"load_addr=41000000\0" \
|
|
"fdt_addr=45000000\0" \
|
|
"kernel_addr=41080000\0" \
|
|
"initrd_addr=45300000\0" \
|
|
"kernel_filename=a64/Image\0" \
|
|
"fdt_filename_prefix=a64/sun50i-a64-\0" \
|
|
"fdt_filename_suffix=.dtb\0" \
|
|
"initrd_filename=initrd.img\0" \
|
|
"bootenv_filename=uEnv.txt\0" \
|
|
"load_bootenv=" \
|
|
"load mmc ${boot_part} ${load_addr} /${bootenv_filename} || load mmc ${boot_part} ${load_addr} /boot/${bootenv_filename}\0" \
|
|
"import_bootenv=" \
|
|
"env import -t ${load_addr} ${filesize}\0" \
|
|
"load_dtb=" \
|
|
"if test ${fdt_filename} = \"\"; then " \
|
|
"setenv fdt_filename ${fdt_filename_prefix}${olimex_model}${fdt_filename_suffix}; " \
|
|
"fi; " \
|
|
"load mmc ${boot_part} ${fdt_addr} ${fdt_filename}; " \
|
|
"fdt addr ${fdt_addr}; fdt resize\0" \
|
|
"load_kernel=" \
|
|
"load mmc ${boot_part} ${kernel_addr} ${kernel_filename}\0" \
|
|
"boot_kernel=booti ${kernel_addr} ${initrd_addr}:${initrd_size} ${fdt_addr}\0" \
|
|
"load_initrd=" \
|
|
"load mmc ${boot_part} ${initrd_addr} ${initrd_filename}; "\
|
|
"setenv initrd_size ${filesize}\0" \
|
|
"load_bootscript=" \
|
|
"load mmc ${boot_part} ${load_addr} /${script} || load mmc ${boot_part} ${load_addr} /boot/${script}\0" \
|
|
"scriptboot=source ${load_addr}\0" \
|
|
"set_cmdline=" \
|
|
"setenv bootargs console=${console} ${optargs} " \
|
|
"earlycon=uart,mmio32,0x01c28000 mac_addr=${ethaddr} " \
|
|
"root=${root} ro " \
|
|
"rootwait\0" \
|
|
"mmcbootcmd=" \
|
|
"if run load_bootenv; then " \
|
|
"echo Loading boot environment ...; " \
|
|
"run import_bootenv; " \
|
|
"fi; " \
|
|
"if run load_bootscript; then " \
|
|
"echo Booting with script ...; " \
|
|
"run scriptboot; " \
|
|
"else " \
|
|
"echo Booting with defaults ...; " \
|
|
"run mmcboot; " \
|
|
"fi\0"
|
|
|
|
#define CONFIG_BOOTDELAY 1
|
|
#define CONFIG_BOOTCOMMAND "run mmcbootcmd"
|
|
#define CONFIG_SYS_BOOT_GET_CMDLINE
|
|
#define CONFIG_AUTO_COMPLETE
|
|
|
|
#define CONFIG_CMD_FAT /* with this we can access bootfs in nand */
|
|
#define CONFIG_CMD_BOOTA /* boot android image */
|
|
#define CONFIG_CMD_RUN /* run a command */
|
|
#define CONFIG_CMD_BOOTD /* boot the default command */
|
|
#define CONFIG_CMD_FASTBOOT
|
|
#define CONFIG_CMD_SUNXI_TIMER
|
|
#define CONFIG_CMD_SUNXI_EFEX
|
|
#define CONFIG_CMD_SUNXI_SHUTDOWN
|
|
#define CONFIG_CMD_SUNXI_BMP
|
|
#define CONFIG_CMD_SUNXI_BURN
|
|
#define CONFIG_CMD_SUNXI_MEMTEST
|
|
//#define CONFIG_CMD_MODIFY_SYSCONFIG
|
|
|
|
//#define CONFIG_ARMV8_SWITCH_TO_EL1
|
|
#define CONFIG_OF_LIBFDT
|
|
#define CONFIG_OF_CONTROL
|
|
#define CONFIG_RELOCATE_SYSCONIFG /*sysconfig.fex is relocate*/
|
|
#define CONFIG_ANDROID_BOOT_IMAGE /*image is android boot image*/
|
|
#define CONFIG_USBD_HS
|
|
#define BOARD_LATE_INIT /* init the fastboot partitions */
|
|
#define CONFIG_SUNXI_DISPLAY
|
|
#define CONFIG_VIDEO_SUNXI_V3
|
|
//#define CONFIG_SYS_DCACHE_OFF
|
|
|
|
#define CONFIG_AUTOBOOT_KEYED
|
|
#define CONFIG_AUTOBOOT_STOP_STR "s"
|
|
#define CONFIG_AUTOBOOT_PROMPT "autoboot in %d seconds, Press s to abort\n",bootdelay
|
|
|
|
// Make it actually useful.
|
|
#define CONFIG_SYS_BOOTMAPSZ 0x4000000
|
|
#define CONFIG_SUPPORT_RAW_INITRD
|
|
#define CONFIG_MACH_SUN50I
|
|
#define CONFIG_CMD_BOOTI
|
|
#define CONFIG_CMD_EXT4
|
|
#define CONFIG_CMD_FS_GENERIC
|
|
#define CONFIG_FAT_WRITE
|
|
#undef CONFIG_ENV_IS_IN_SUNXI_FLASH
|
|
#define CONFIG_ENV_IS_IN_FAT
|
|
#define FAT_ENV_INTERFACE "mmc"
|
|
#define FAT_ENV_DEVICE_AND_PART getenv("boot_part")
|
|
#define FAT_ENV_FILE "uboot.env"
|
|
#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
|
|
#undef CONFIG_MMC_LOGICAL_OFFSET
|
|
#define CONFIG_MMC_LOGICAL_OFFSET 0
|
|
#define CONFIG_CMD_ECHO
|
|
#define CONFIG_CMD_SOURCE
|
|
#define CONFIG_CMD_SUNXI_UMS
|
|
#define CONFIG_OLIMEX_MODEL
|
|
/*
|
|
#define CONFIG_PINE64_MODEL
|
|
#define CONFIG_PINEBOOK_MODEL
|
|
*/
|
|
#endif /* __CONFIG_H */
|