
Hello all,
The patch set include two parts: 1. SATA framework support 2. The Freescale SATA controller support
I hope these patches to go v1.3.3.
Thanks, Dave
The following changes since commit 23e20aa6488e6c0622496549861bfdc74108debe: Yuri Tikhonov (1): lwmon5: Fix register test logic to match the specific GDC h/w.
are available in the git repository at:
git://git.ap.freescale.net/git/u-boot.git develop
Anton Vorontsov (1): mpc83xx: serdes setup routines
Dave Liu (8): ATA: Add the support for SATA framework ATA: Add the libata support ATA: Add the fis struct for SATA ATA: enable the sata init on bootup ATA: Add the readme for SATA command line mpc83xx: enable serdes1 for 837x SATA drivers: Add the support for Freescale SATA controller mpc83xx: enable the SATA interface on mpc837xemds board
board/freescale/mpc837xemds/mpc837xemds.c | 3 + common/Makefile | 1 + common/cmd_sata2.c | 206 +++++++ cpu/mpc83xx/Makefile | 2 +- cpu/mpc83xx/serdes.c | 156 +++++ disk/part.c | 14 + disk/part_dos.c | 2 + disk/part_iso.c | 1 + doc/README.sata | 69 +++ drivers/block/Makefile | 2 + drivers/block/fsl_sata.c | 921 ++++++++++++++++++++++ +++++++ drivers/block/fsl_sata.h | 374 ++++++++++++ drivers/block/libata.c | 158 +++++ include/asm-ppc/fsl_serdes.h | 25 + include/configs/MPC837XEMDS.h | 32 + include/fis.h | 156 +++++ include/libata.h | 207 +++++++ include/part.h | 3 + lib_ppc/board.c | 8 + 19 files changed, 2339 insertions(+), 1 deletions(-) create mode 100644 common/cmd_sata2.c create mode 100644 cpu/mpc83xx/serdes.c create mode 100644 doc/README.sata create mode 100644 drivers/block/fsl_sata.c create mode 100644 drivers/block/fsl_sata.h create mode 100644 drivers/block/libata.c create mode 100644 include/asm-ppc/fsl_serdes.h create mode 100644 include/fis.h create mode 100644 include/libata.h