All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jaehoon Chung <jh80.chung@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [GIT PULL] Please pull u-boot-mmc master
Date: Fri, 18 Aug 2017 15:35:30 +0900	[thread overview]
Message-ID: <93f22838-a0e3-865f-81cd-26379c8c7a57@samsung.com> (raw)
In-Reply-To: <1c6ebcaa-693d-7ae3-b488-a8699902fa01@samsung.com>

Dear Tom,

I will resend the PR. Discard this PR.

Best Regards,
Jaehoon Chung

On 08/18/2017 02:39 PM, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> Sorry for late about reviewing patches.
> Because of my late reviewing, some guys can't keep going their progress.
> 
> I had tested the buildman about all..As i see, there is no issue.
> If there is any issue, let me know, plz.
> 
> The following changes since commit 2d3c4ae350fe8c196698681ab9410733bf9017e0:
> 
>   Prepare v2017.09-rc2 (2017-08-14 20:02:11 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to b441a8ac51f8f628c0ae6efbf58f464464332c1d:
> 
>   mmc: Support generic PCI SD host controller (2017-08-18 14:18:23 +0900)
> 
> ----------------------------------------------------------------
> Angelo Dureghello (1):
>       cmd: mmc: add mmc partconf read capability
> 
> Bin Meng (1):
>       mmc: Support generic PCI SD host controller
> 
> Jean-Jacques Hiblot (1):
>       regulator: pbias: Add PBIAS regulator for proper voltage switching on MMC1
> 
> Marek Vasut (4):
>       mmc: uniphier-sd: Fix long response processing
>       mmc: sh_sdhi: Add DM and DT probing support
>       mmc: sh_sdhi: Fix the ACMD handling
>       mmc: sd_sdhi: Enable clock using clock framework
> 
> Simon Glass (40):
>       dm: core: Avoid calling dm_scan_fdt_dev() with of-platdata
>       dm: blk: Add a function to find an interface-type name
>       dm: blk: Add a generic function for block device commands
>       dm: sata: Adjust the 'sata' command to use blk_common_cmd()
>       dm: scsi: Adjust the 'scsi' command to use blk_common_cmd()
>       dm: ide: Adjust the 'ide' command to use blk_common_cmd()
>       dm: usb: Adjust the 'usb' command to use blk_common_cmd()
>       dm: blk: Update return value in blk_create_devicef()
>       dm: core: Add a comment about the device_remove() flags
>       dm: sata: dwc_ahsata: Make functions static
>       dm: sata: dw_sata: Drop dwc_ahsata_rw_ncq_cmd()
>       dm: sata: dw_sata: Move exported functions to the end
>       dm: sata: dw_sata: Rename 'probe_ent' to uc_priv
>       dm: sata: dw_sata: Drop unnecessary casts
>       dm: sata: dw_sata: Pass uc_priv to internal functions
>       dm: sata: dw_sata: Drop unnecessary brackets
>       dm: sata: dw_sata: Sort #include directives
>       dm: sata: dw_sata: Rename the dwc_ahsata private header
>       dm: sata: dw_sata: Drop is_ready
>       dm: sata: dw_sata: More ahci_init_one() futher down
>       dm: sata: dw_sata: Set up common versions of operations
>       dm: sata: Support driver model with the 'sata' command
>       dm: sata: imx: Allow driver model to be used for sata
>       dm: sata: Update the AHCI uclass to support operations
>       dm: sata: dwc_ahsata: Add support for driver model
>       dm: mmc: fsl_esdhc: Pass private data to internal functions
>       dm: mmc: fsl_esdhc: Set up common versions of operations
>       dm: mmc: fsl_esdhc: Detect reset failure
>       dm: mmc: fsl_esdhc: Detect init failure
>       dm: mmc: fsl_esdhc: Set up platform data
>       dm: mmc: fsl_esdhc: Drop mmc_init() call from fsl_esdhc_init()
>       dm: mmc: fsl_esdhc: Update to support livetree
>       dm: mmc: fsl_esdhc: Update to support MMC operations
>       dm: imx: cm_fx6: Support driver model for SATA
>       dm: imx: cm_fx6: Add device tree for cm_fx6
>       dm: imx: cm_fx6: Add MMC support for CONFIG_BLK
>       dm: imx: cm_fx6: Enable more driver model support
>       dm: imx: Move i.MX devices to use CONFIG_DM_MMC_OPS
>       dm: mmc: Correct Kconfig condition for SPL_DM_MMC_OPS
>       dm: mmc: Drop CONFIG_DM_MMC_OPS
> 
> Wenyou.Yang at microchip.com (1):
>       mmc: gen_atmel_mci: Fix wrong arguments used of bind()
> 
>  arch/arm/Kconfig                                |   2 -
>  arch/arm/dts/Makefile                           |   1 +
>  arch/arm/dts/imx6q-cm-fx6.dts                   | 115 ++++
>  arch/arm/mach-imx/cpu.c                         |   2 +-
>  arch/arm/mach-rmobile/include/mach/sh_sdhi.h    |   5 -
>  board/compulab/cm_fx6/cm_fx6.c                  |  80 +++
>  cmd/Makefile                                    |   1 +
>  cmd/blk_common.c                                | 104 ++++
>  cmd/ide.c                                       | 107 +---
>  cmd/mmc.c                                       |  38 +-
>  cmd/sata.c                                      | 178 +++---
>  cmd/scsi.c                                      |  79 +--
>  cmd/usb.c                                       | 111 +---
>  common/splash_source.c                          |   2 +-
>  configs/cm_fx6_defconfig                        |   8 +-
>  configs/imx6q_logic_defconfig                   |   1 -
>  configs/imx6qdl_icore_mmc_defconfig             |   1 -
>  configs/imx6qdl_icore_rqs_defconfig             |   1 -
>  configs/imx6ul_geam_mmc_defconfig               |   1 -
>  configs/imx6ul_geam_nand_defconfig              |   1 -
>  configs/imx6ul_isiot_emmc_defconfig             |   1 -
>  configs/imx6ul_isiot_mmc_defconfig              |   1 -
>  configs/imx6ul_isiot_nand_defconfig             |   1 -
>  configs/ls1012aqds_qspi_defconfig               |   1 -
>  configs/ls1012ardb_qspi_defconfig               |   1 -
>  configs/mx6slevk_defconfig                      |   1 -
>  configs/mx6slevk_spinor_defconfig               |   1 -
>  configs/mx6sllevk_defconfig                     |   1 -
>  configs/mx6sllevk_plugin_defconfig              |   1 -
>  configs/mx6sxsabreauto_defconfig                |   1 -
>  configs/mx6ull_14x14_evk_defconfig              |   1 -
>  configs/mx6ull_14x14_evk_plugin_defconfig       |   1 -
>  configs/mx7dsabresd_defconfig                   |   1 -
>  configs/mx7dsabresd_secure_defconfig            |   1 -
>  configs/mx7ulp_evk_defconfig                    |   1 -
>  configs/mx7ulp_evk_plugin_defconfig             |   1 -
>  configs/opos6uldev_defconfig                    |   1 -
>  drivers/ata/dwc_ahsata.c                        | 797 +++++++++++++-----------
>  drivers/ata/{dwc_ahsata.h => dwc_ahsata_priv.h} |   6 +-
>  drivers/ata/sata.c                              |  37 ++
>  drivers/block/blk-uclass.c                      |   7 +-
>  drivers/block/blk_legacy.c                      |   7 +
>  drivers/core/syscon-uclass.c                    |   3 +
>  drivers/mmc/Kconfig                             |  40 +-
>  drivers/mmc/dw_mmc.c                            |   8 +-
>  drivers/mmc/fsl_esdhc.c                         | 261 +++++---
>  drivers/mmc/gen_atmel_mci.c                     |  64 +-
>  drivers/mmc/mmc-uclass.c                        |   4 -
>  drivers/mmc/mmc.c                               |  12 +-
>  drivers/mmc/mmc_boot.c                          |  17 +-
>  drivers/mmc/mmc_legacy.c                        |   2 +-
>  drivers/mmc/pci_mmc.c                           |   7 +-
>  drivers/mmc/sdhci.c                             |   8 +-
>  drivers/mmc/sh_sdhi.c                           | 283 +++++++--
>  drivers/mmc/uniphier-sd.c                       |  14 +-
>  drivers/power/regulator/Kconfig                 |  13 +
>  drivers/power/regulator/Makefile                |   1 +
>  drivers/power/regulator/pbias_regulator.c       | 302 +++++++++
>  include/ahci.h                                  |  54 ++
>  include/blk.h                                   |  20 +
>  include/configs/am335x_evm.h                    |   1 -
>  include/configs/am335x_shc.h                    |   1 -
>  include/configs/chiliboard.h                    |   1 -
>  include/configs/omap3_logic.h                   |   1 -
>  include/dm/device-internal.h                    |   2 +-
>  include/dwc_ahsata.h                            |  16 +
>  include/dwmmc.h                                 |   2 +-
>  include/mmc.h                                   |  10 +-
>  include/sata.h                                  |   5 +-
>  include/sdhci.h                                 |   2 +-
>  70 files changed, 1827 insertions(+), 1036 deletions(-)
>  create mode 100644 arch/arm/dts/imx6q-cm-fx6.dts
>  create mode 100644 cmd/blk_common.c
>  rename drivers/ata/{dwc_ahsata.h => dwc_ahsata_priv.h} (99%)
>  create mode 100644 drivers/power/regulator/pbias_regulator.c
>  create mode 100644 include/dwc_ahsata.h
> 
> Best Regards,
> Jaehoon Chung
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot
> 

  reply	other threads:[~2017-08-18  6:35 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20170818053954epcas1p232acd1af824a992adc6aaa44c1e7a907@epcas1p2.samsung.com>
2017-08-18  5:39 ` [U-Boot] [GIT PULL] Please pull u-boot-mmc master Jaehoon Chung
2017-08-18  6:35   ` Jaehoon Chung [this message]
     [not found] <CGME20180508072215epcas1p2cbd07880b5188605fe679ccb248b87eb@epcas1p2.samsung.com>
2018-05-08  7:22 ` Jaehoon Chung
2018-05-09  1:30   ` Tom Rini
     [not found] <CGME20180502020320epcas1p1b59166567ba1b0c1bb1c700503bc2d09@epcas1p1.samsung.com>
2018-05-02  2:03 ` Jaehoon Chung
2018-05-02 22:10   ` Tom Rini
     [not found] <CGME20180226015859epcas1p30bda4a35316c512366573946d617d484@epcas1p3.samsung.com>
2018-02-26  1:58 ` [U-Boot] [GIT PULL ] " Jaehoon Chung
2018-02-26 15:49   ` Tom Rini
     [not found] <CGME20180220035728epcas2p152ee76e870ed334c7e91ef8d7ec0b699@epcas2p1.samsung.com>
2018-02-20  3:57 ` Jaehoon Chung
2018-02-20 13:20   ` Tom Rini
     [not found] <CGME20180219112702epcas1p2bb88ec4017cd6b54b2ea2d8801ec3835@epcas1p2.samsung.com>
2018-02-19 11:27 ` [U-Boot] [GIT PULL] " Jaehoon Chung
2018-02-19 14:47   ` Jaehoon Chung
2018-02-19 14:48     ` Tom Rini
2018-02-19 17:00       ` Marek Vasut
     [not found] <CGME20180124073159epcas2p18ec97927c7e6c3c04bbe52a8240492fb@epcas2p1.samsung.com>
2018-01-24  7:31 ` Jaehoon Chung
2018-01-25  0:57   ` Jaehoon Chung
2018-01-25  1:44     ` Tom Rini
2018-01-25  2:25   ` Tom Rini
     [not found] <CGME20180115023505epcas1p37c76459b4841dd1817c53159477db616@epcas1p3.samsung.com>
2018-01-15  2:35 ` Jaehoon Chung
2018-01-15 13:53   ` Tom Rini
2018-01-16  8:50     ` Jaehoon Chung
     [not found] <CGME20171128022004epcas2p150a95af40d2b05cefb9817e1582f58ab@epcas2p1.samsung.com>
2017-11-28  2:20 ` Jaehoon Chung
2017-11-28 12:15   ` Tom Rini
2017-11-28 16:22     ` Jean-Jacques Hiblot
2017-11-30  1:39       ` Jaehoon Chung
2017-11-30  1:35     ` Jaehoon Chung
     [not found] <CGME20171127075849epcas2p2e0e6f0ddab3c8c25ddd093353fa52331@epcas2p2.samsung.com>
2017-11-27  7:58 ` Jaehoon Chung
2017-11-27  9:31   ` Jaehoon Chung
     [not found] <CGME20171023045432epcas2p37d83600c293491c657180667df894ae6@epcas2p3.samsung.com>
2017-10-23  4:54 ` Jaehoon Chung
2017-10-24  7:58   ` Jaehoon Chung
     [not found] <CGME20170925053103epcas2p190b97c9c8b6b7ce3fa5859b3b662463a@epcas2p1.samsung.com>
2017-09-25  5:31 ` Jaehoon Chung
2017-09-26 12:17   ` Tom Rini
     [not found] <CGME20170731025907epcas1p1fb9b643ec83cc77b12ab0d8550755be7@epcas1p1.samsung.com>
2017-07-31  2:59 ` Jaehoon Chung
2017-07-31 11:27   ` Tom Rini
2017-08-01  2:48     ` Jaehoon Chung
     [not found] <CGME20170719101711epcas5p1e73a75ea548997594e3f5ba23da0e565@epcas5p1.samsung.com>
2017-07-19 10:17 ` Jaehoon Chung
2017-07-21 15:48   ` Tom Rini
     [not found] <CGME20170630034821epcas1p193104bec121303c6897391e690a943f3@epcas1p1.samsung.com>
2017-06-30  3:48 ` Jaehoon Chung
2017-06-30 10:48   ` Tom Rini
2017-06-30 11:59     ` Jaehoon Chung
     [not found] <CGME20170609112846epcas1p1db6eece58f727344e6789e434afa09c9@epcas1p1.samsung.com>
2017-06-09 11:28 ` Jaehoon Chung
2017-06-10 22:00   ` Tom Rini
     [not found] <CGME20170529083151epcas5p1d26d3ff44c53bba61cc380bfd78a910f@epcas5p1.samsung.com>
2017-05-29  8:31 ` Jaehoon Chung
2017-05-31  2:06   ` Tom Rini
     [not found] <CGME20170515050639epcas1p3d4f0aca8a724070fbe556078835f2e61@epcas1p3.samsung.com>
2017-05-15  5:06 ` Jaehoon Chung
2017-05-15  6:18   ` Jaehoon Chung
     [not found] <CGME20170414065148epcas5p1f02fb69f9925f4b4a7bf176a76e447f7@epcas5p1.samsung.com>
2017-04-14  6:51 ` Jaehoon Chung
2017-04-14 21:09   ` Tom Rini
     [not found] <CGME20170330052139epcas5p1e95ad9a80664dd907de79e6c2ad05763@epcas5p1.samsung.com>
2017-03-30  5:21 ` Jaehoon Chung
2017-04-04 20:00   ` Tom Rini
     [not found] <CGME20170321121100epcas5p19374186df9de3d740bceb6ba2d97f8c3@epcas5p1.samsung.com>
2017-03-21 12:11 ` Jaehoon Chung
2017-03-22  0:51   ` Tom Rini
     [not found] <CGME20170209115016epcas5p2c78275706402e633c0da384936a1692f@epcas5p2.samsung.com>
2017-02-09 11:50 ` Jaehoon Chung
2017-02-09 19:50   ` Tom Rini
     [not found] <CGME20170131232440epcas5p2ff99c09928cf938f10d640785b25b911@epcas5p2.samsung.com>
2017-01-31 23:24 ` Jaehoon Chung
2017-02-01 21:33   ` Tom Rini
     [not found] <CGME20170124093735epcas5p2696f062ee887233d1eacc5319f25b156@epcas5p2.samsung.com>
2017-01-24  9:37 ` Jaehoon Chung
2017-01-25  2:15   ` Tom Rini
     [not found] <CGME20170110054802epcas5p47773e1927ecb61adccb970ff738c45a2@epcas5p4.samsung.com>
2017-01-10  5:48 ` Jaehoon Chung
2017-01-10 17:32   ` Tom Rini
2017-01-11  2:11     ` Jaehoon Chung
2017-01-11 12:39     ` Jaehoon Chung
2017-01-11 16:28       ` Tom Rini
     [not found] <CGME20170103011718epcas5p45970bc6129500aea930bc0e359be6cb4@epcas5p4.samsung.com>
2017-01-03  1:17 ` Jaehoon Chung
2017-01-03  1:19   ` Jaehoon Chung
2017-01-05 14:34   ` Tom Rini
2017-01-06  1:19     ` Jaehoon Chung
2016-12-21 22:12 Jaehoon Chung
2016-12-22  2:30 ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2016-12-01  7:01 Jaehoon Chung
2016-12-01 18:17 ` Tom Rini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=93f22838-a0e3-865f-81cd-26379c8c7a57@samsung.com \
    --to=jh80.chung@samsung.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.