mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-04 14:35:21 +00:00
This commit adds a new driver category for memory controller peripherals. There is no API involved for now, as it has not been found necessary for first implementation. STM32 Flexible Memory Controller (FMC) is the only controller supported for now. This peripheral allows to access multiple types of external memories, e.g. SDRAM, NAND, NOR Flash... The initial implementation adds support for the SDRAM controller only. The HAL API is used, so the implementation should be portable to other STM32 series. It has only been tested on H7 series, so for now it can only be enabled when working on H7. Linker facilities have also been added in order to allow applications to easily define a variable in SDRAM. Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
107 lines
1.7 KiB
Plaintext
107 lines
1.7 KiB
Plaintext
# drivers configuration options
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "Device Drivers"
|
|
|
|
source "drivers/bluetooth/Kconfig"
|
|
|
|
source "drivers/ieee802154/Kconfig"
|
|
|
|
source "drivers/lora/Kconfig"
|
|
|
|
source "drivers/console/Kconfig"
|
|
|
|
source "drivers/debug/Kconfig"
|
|
|
|
source "drivers/ec_host_cmd_periph/Kconfig"
|
|
|
|
source "drivers/ethernet/Kconfig"
|
|
|
|
source "drivers/net/Kconfig"
|
|
|
|
source "drivers/serial/Kconfig"
|
|
|
|
source "drivers/interrupt_controller/Kconfig"
|
|
|
|
source "drivers/timer/Kconfig"
|
|
|
|
source "drivers/entropy/Kconfig"
|
|
|
|
source "drivers/pcie/Kconfig"
|
|
|
|
source "drivers/gpio/Kconfig"
|
|
|
|
source "drivers/interrupt_controller/Kconfig.shared_irq"
|
|
|
|
source "drivers/spi/Kconfig"
|
|
|
|
source "drivers/i2c/Kconfig"
|
|
|
|
source "drivers/i2s/Kconfig"
|
|
|
|
source "drivers/pwm/Kconfig"
|
|
|
|
source "drivers/pinmux/Kconfig"
|
|
|
|
source "drivers/adc/Kconfig"
|
|
|
|
source "drivers/dac/Kconfig"
|
|
|
|
source "drivers/watchdog/Kconfig"
|
|
|
|
source "drivers/clock_control/Kconfig"
|
|
|
|
source "drivers/ptp_clock/Kconfig"
|
|
|
|
source "drivers/ipm/Kconfig"
|
|
|
|
source "drivers/flash/Kconfig"
|
|
|
|
source "drivers/sensor/Kconfig"
|
|
|
|
source "drivers/counter/Kconfig"
|
|
|
|
source "drivers/dma/Kconfig"
|
|
|
|
source "drivers/usb/Kconfig"
|
|
|
|
source "drivers/crypto/Kconfig"
|
|
|
|
source "drivers/display/Kconfig"
|
|
|
|
source "drivers/led_strip/Kconfig"
|
|
|
|
source "drivers/wifi/Kconfig"
|
|
|
|
source "drivers/led/Kconfig"
|
|
|
|
source "drivers/can/Kconfig"
|
|
|
|
source "drivers/modem/Kconfig"
|
|
|
|
source "drivers/audio/Kconfig"
|
|
|
|
source "drivers/neural_net/Kconfig"
|
|
|
|
source "drivers/hwinfo/Kconfig"
|
|
|
|
source "drivers/espi/Kconfig"
|
|
|
|
source "drivers/ps2/Kconfig"
|
|
|
|
source "drivers/kscan/Kconfig"
|
|
|
|
source "drivers/video/Kconfig"
|
|
|
|
source "drivers/eeprom/Kconfig"
|
|
|
|
source "drivers/peci/Kconfig"
|
|
|
|
source "drivers/regulator/Kconfig"
|
|
|
|
source "drivers/memc/Kconfig"
|
|
|
|
endmenu
|