
-----Original Message----- From: Peng Ma Sent: Wednesday, March 27, 2019 2:53 PM To: Prabhakar Kushwaha prabhakar.kushwaha@nxp.com; Shengzhou Liu shengzhou.liu@nxp.com; Ruchika Gupta ruchika.gupta@nxp.com Cc: Yinbo Zhu yinbo.zhu@nxp.com; sjg@chromium.org; Jagdish Gediya jagdish.gediya@nxp.com; York Sun york.sun@nxp.com; bmeng.cn@gmail.com; sr@denx.de; make@marvell.com; Andy Tang andy.tang@nxp.com; u-boot@lists.denx.de; Peng Ma peng.ma@nxp.com Subject: [PATCH 1/4] ata: fsl_ahci: Add sata DM support for Freescale powerpc socs
This patch is to support Freescale sata driver with dts initialized. Also resolved the following problems.
===================== WARNING ====================== This board does not use CONFIG_DM_SCSI. Please update the storage controller to use CONFIG_DM_SCSI before the v2019.07 release. Failure to update by the deadline may result in board removal. See doc/driver-model/MIGRATION.txt for more info. ====================================================
Signed-off-by: Peng Ma peng.ma@nxp.com
depends on:
- https://patchwork.ozlabs.org/project/uboot/list/?series=99168
- https://patchwork.ozlabs.org/project/uboot/list/?series=99167
drivers/ata/Kconfig | 10 + drivers/ata/Makefile | 1 + drivers/ata/fsl_ahci.c | 1030 ++++++++++++++++++++++++++++++++++++++++ drivers/ata/fsl_sata.h | 1 + 4 files changed, 1042 insertions(+) create mode 100644 drivers/ata/fsl_ahci.c
New driver is getting added in drivers/ata.
I request driver/ata maintainer to review
--pk