mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
sata: Move drivers into new drivers/ata directory
At present we have the SATA and PATA drivers mixed up in the drivers/block directory. It is better to split them out into their own place. Use drivers/ata which is what Linux does. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
10e40d54b3
commit
f2105c6182
28 changed files with 90 additions and 63 deletions
|
@ -48,7 +48,7 @@
|
|||
#ifndef CONFIG_ARCH_QEMU_E500
|
||||
#include <fsl_ddr.h>
|
||||
#endif
|
||||
#include "../../../../drivers/block/fsl_sata.h"
|
||||
#include "../../../../drivers/ata/fsl_sata.h"
|
||||
#ifdef CONFIG_U_QE
|
||||
#include <fsl_qe.h>
|
||||
#endif
|
||||
|
|
|
@ -79,7 +79,6 @@ obj-$(CONFIG_LCD_ROTATION) += lcd_console_rotation.o
|
|||
obj-$(CONFIG_LCD_DT_SIMPLEFB) += lcd_simplefb.o
|
||||
obj-$(CONFIG_LYNXKDI) += lynxkdi.o
|
||||
obj-$(CONFIG_MENU) += menu.o
|
||||
obj-$(CONFIG_SATA) += sata.o
|
||||
obj-$(CONFIG_SCSI) += scsi.o
|
||||
obj-$(CONFIG_UPDATE_TFTP) += update.o
|
||||
obj-$(CONFIG_DFU_TFTP) += update.o
|
||||
|
|
|
@ -6,6 +6,8 @@ source "drivers/core/Kconfig"
|
|||
|
||||
source "drivers/adc/Kconfig"
|
||||
|
||||
source "drivers/ata/Kconfig"
|
||||
|
||||
source "drivers/block/Kconfig"
|
||||
|
||||
source "drivers/clk/Kconfig"
|
||||
|
|
|
@ -45,7 +45,7 @@ obj-$(CONFIG_SPL_DFU_SUPPORT) += dfu/
|
|||
obj-$(CONFIG_SPL_WATCHDOG_SUPPORT) += watchdog/
|
||||
obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += usb/host/
|
||||
obj-$(CONFIG_OMAP_USB_PHY) += usb/phy/
|
||||
obj-$(CONFIG_SPL_SATA_SUPPORT) += block/
|
||||
obj-$(CONFIG_SPL_SATA_SUPPORT) += ata/
|
||||
obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += block/
|
||||
obj-$(CONFIG_SPL_MMC_SUPPORT) += block/
|
||||
endif
|
||||
|
@ -66,6 +66,7 @@ endif
|
|||
ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),)
|
||||
|
||||
obj-y += adc/
|
||||
obj-y += ata/
|
||||
obj-$(CONFIG_DM_DEMO) += demo/
|
||||
obj-$(CONFIG_BIOSEMU) += bios_emulator/
|
||||
obj-y += block/
|
||||
|
|
62
drivers/ata/Kconfig
Normal file
62
drivers/ata/Kconfig
Normal file
|
@ -0,0 +1,62 @@
|
|||
config AHCI
|
||||
bool "Support SATA controllers with driver model"
|
||||
depends on DM
|
||||
help
|
||||
This enables a uclass for disk controllers in U-Boot. Various driver
|
||||
types can use this, such as AHCI/SATA. It does not provide any standard
|
||||
operations at present. The block device interface has not been converted
|
||||
to driver model.
|
||||
|
||||
config SATA
|
||||
bool "Support SATA controllers"
|
||||
help
|
||||
This enables support for SATA (Serial Advanced Technology
|
||||
Attachment), a serial bus standard for connecting to hard drives and
|
||||
other storage devices.
|
||||
|
||||
SATA replaces PATA (originally just ATA), which stands for Parallel AT
|
||||
Attachment, where AT refers to an IBM AT (Advanced Technology)
|
||||
computer released in 1984.
|
||||
|
||||
See also CMD_SATA which provides command-line support.
|
||||
|
||||
config SCSI
|
||||
bool "Support SCSI controllers"
|
||||
help
|
||||
This enables support for SCSI (Small Computer System Interface),
|
||||
a parallel interface widely used with storage peripherals such as
|
||||
hard drives and optical drives. The SCSI standards define physical
|
||||
interfaces as well as protocols for controlling devices and
|
||||
tranferring data.
|
||||
|
||||
config DM_SCSI
|
||||
bool "Support SCSI controllers with driver model"
|
||||
depends on BLK
|
||||
help
|
||||
This option enables the SCSI (Small Computer System Interface) uclass
|
||||
which supports SCSI and SATA HDDs. For every device configuration
|
||||
(IDs/LUNs) a block device is created with RAW read/write and
|
||||
filesystem support.
|
||||
|
||||
menu "SATA/SCSI device support"
|
||||
|
||||
config SATA_CEVA
|
||||
bool "Ceva Sata controller"
|
||||
depends on AHCI
|
||||
depends on DM_SCSI
|
||||
help
|
||||
This option enables Ceva Sata controller hard IP available on Xilinx
|
||||
ZynqMP. Support up to 2 external devices. Complient with SATA 3.1 and
|
||||
AHCI 1.3 specifications with hot-plug detect feature.
|
||||
|
||||
|
||||
config DWC_AHCI
|
||||
bool "Enable Synopsys DWC AHCI driver support"
|
||||
select SCSI_AHCI
|
||||
select PHY
|
||||
depends on DM_SCSI
|
||||
help
|
||||
Enable this driver to support Sata devices through
|
||||
Synopsys DWC AHCI module.
|
||||
|
||||
endmenu
|
22
drivers/ata/Makefile
Normal file
22
drivers/ata/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
#
|
||||
# (C) Copyright 2000-2007
|
||||
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-$(CONFIG_DWC_AHCI) += dwc_ahci.o
|
||||
obj-$(CONFIG_AHCI) += ahci-uclass.o
|
||||
obj-$(CONFIG_SCSI_AHCI) += ahci.o
|
||||
obj-$(CONFIG_DWC_AHSATA) += dwc_ahsata.o
|
||||
obj-$(CONFIG_FSL_SATA) += fsl_sata.o
|
||||
obj-$(CONFIG_LIBATA) += libata.o
|
||||
obj-$(CONFIG_MVSATA_IDE) += mvsata_ide.o
|
||||
obj-$(CONFIG_MX51_PATA) += mxc_ata.o
|
||||
obj-$(CONFIG_SATA) += sata.o
|
||||
obj-$(CONFIG_SATA_CEVA) += sata_ceva.o
|
||||
obj-$(CONFIG_SATA_DWC) += sata_dwc.o
|
||||
obj-$(CONFIG_SATA_MV) += sata_mv.o
|
||||
obj-$(CONFIG_SATA_SIL3114) += sata_sil3114.o
|
||||
obj-$(CONFIG_SATA_SIL) += sata_sil.o
|
||||
obj-$(CONFIG_SANDBOX) += sata_sandbox.o
|
|
@ -10,28 +10,6 @@ config BLK
|
|||
be partitioned into several areas, called 'partitions' in U-Boot.
|
||||
A filesystem can be placed in each partition.
|
||||
|
||||
config AHCI
|
||||
bool "Support SATA controllers with driver model"
|
||||
depends on DM
|
||||
help
|
||||
This enables a uclass for disk controllers in U-Boot. Various driver
|
||||
types can use this, such as AHCI/SATA. It does not provide any standard
|
||||
operations at present. The block device interface has not been converted
|
||||
to driver model.
|
||||
|
||||
config SATA
|
||||
bool "Support SATA controllers"
|
||||
help
|
||||
This enables support for SATA (Serial Advanced Technology
|
||||
Attachment), a serial bus standard for connecting to hard drives and
|
||||
other storage devices.
|
||||
|
||||
SATA replaces PATA (originally just ATA), which stands for Parallel AT
|
||||
Attachment, where AT refers to an IBM AT (Advanced Technology)
|
||||
computer released in 1984.
|
||||
|
||||
See also CMD_SATA which provides command-line support.
|
||||
|
||||
config SCSI
|
||||
bool "Support SCSI controllers"
|
||||
help
|
||||
|
@ -59,29 +37,6 @@ config BLOCK_CACHE
|
|||
it will prevent repeated reads from directory structures and other
|
||||
filesystem data structures.
|
||||
|
||||
menu "SATA/SCSI device support"
|
||||
|
||||
config SATA_CEVA
|
||||
bool "Ceva Sata controller"
|
||||
depends on AHCI
|
||||
depends on DM_SCSI
|
||||
help
|
||||
This option enables Ceva Sata controller hard IP available on Xilinx
|
||||
ZynqMP. Support up to 2 external devices. Complient with SATA 3.1 and
|
||||
AHCI 1.3 specifications with hot-plug detect feature.
|
||||
|
||||
|
||||
config DWC_AHCI
|
||||
bool "Enable Synopsys DWC AHCI driver support"
|
||||
select SCSI_AHCI
|
||||
select PHY
|
||||
depends on DM_SCSI
|
||||
help
|
||||
Enable this driver to support Sata devices through
|
||||
Synopsys DWC AHCI module.
|
||||
|
||||
endmenu
|
||||
|
||||
config IDE
|
||||
bool "Support IDE controllers"
|
||||
help
|
||||
|
|
|
@ -11,22 +11,8 @@ ifndef CONFIG_BLK
|
|||
obj-y += blk_legacy.o
|
||||
endif
|
||||
|
||||
obj-$(CONFIG_DWC_AHCI) += dwc_ahci.o
|
||||
obj-$(CONFIG_AHCI) += ahci-uclass.o
|
||||
obj-$(CONFIG_DM_SCSI) += scsi-uclass.o
|
||||
obj-$(CONFIG_SCSI_AHCI) += ahci.o
|
||||
obj-$(CONFIG_DWC_AHSATA) += dwc_ahsata.o
|
||||
obj-$(CONFIG_FSL_SATA) += fsl_sata.o
|
||||
obj-$(CONFIG_IDE) += ide.o
|
||||
obj-$(CONFIG_IDE_FTIDE020) += ftide020.o
|
||||
obj-$(CONFIG_LIBATA) += libata.o
|
||||
obj-$(CONFIG_MVSATA_IDE) += mvsata_ide.o
|
||||
obj-$(CONFIG_MX51_PATA) += mxc_ata.o
|
||||
obj-$(CONFIG_SATA_CEVA) += sata_ceva.o
|
||||
obj-$(CONFIG_SATA_DWC) += sata_dwc.o
|
||||
obj-$(CONFIG_SATA_MV) += sata_mv.o
|
||||
obj-$(CONFIG_SATA_SIL3114) += sata_sil3114.o
|
||||
obj-$(CONFIG_SATA_SIL) += sata_sil.o
|
||||
obj-$(CONFIG_SANDBOX) += sandbox.o sandbox_scsi.o sata_sandbox.o
|
||||
obj-$(CONFIG_SANDBOX) += sandbox.o sandbox_scsi.o
|
||||
obj-$(CONFIG_SYSTEMACE) += systemace.o
|
||||
obj-$(CONFIG_BLOCK_CACHE) += blkcache.o
|
||||
|
|
Loading…
Reference in a new issue