All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nikita Kiryanov <nikita@compulab.co.il>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/7] omap mmc: implement card detect and write protection
Date: Sun, 30 Dec 2012 08:13:29 +0200	[thread overview]
Message-ID: <50DFDB89.1010905@compulab.co.il> (raw)
In-Reply-To: <1354537187-26744-1-git-send-email-nikita@compulab.co.il>

Gentle ping.

On 12/03/2012 02:19 PM, Nikita Kiryanov wrote:
> This patchset implements card detection and write protection check for omap mmc.
> The write protect implementation also adds generic code that is usable by other
> mmc drivers.
>
> The first 3 patches are preparation patches that contain general maintenance
> for omap mmc driver.
>
> This patchset depends on http://patchwork.ozlabs.org/patch/202384/
>
> Nikita Kiryanov (7):
>    omap: consolidate common mmc definitions
>    omap_hsmmc: fix out of bounds array access
>    omap_hsmmc: introduce omap_hsmmc_data struct
>    omap_hsmmc: implement driver check for card detection
>    cm-t35: implement board specific card detect check
>    mmc: add support for write protection
>    omap_hsmmc: add driver check for write protection
>
>   arch/arm/cpu/armv7/am33xx/board.c               |    4 +-
>   arch/arm/cpu/armv7/omap-common/boot-common.c    |    4 +-
>   arch/arm/cpu/armv7/omap3/board.c                |    4 +-
>   arch/arm/include/asm/arch-am33xx/mmc_host_def.h |  140 +------------------
>   arch/arm/include/asm/arch-omap3/mmc_host_def.h  |  139 +------------------
>   arch/arm/include/asm/arch-omap4/mmc_host_def.h  |  140 +------------------
>   arch/arm/include/asm/arch-omap5/mmc_host_def.h  |  140 +------------------
>   arch/arm/include/asm/omap_mmc.h                 |  168 +++++++++++++++++++++++
>   board/cm_t35/cm_t35.c                           |   13 +-
>   board/comelit/dig297/dig297.c                   |    3 +-
>   board/corscience/tricorder/tricorder.c          |    2 +-
>   board/htkw/mcx/mcx.c                            |    2 +-
>   board/isee/igep0020/igep0020.c                  |    3 +-
>   board/isee/igep0030/igep0030.c                  |    3 +-
>   board/logicpd/am3517evm/am3517evm.c             |    3 +-
>   board/logicpd/omap3som/omap3logic.c             |    2 +-
>   board/logicpd/zoom1/zoom1.c                     |    3 +-
>   board/logicpd/zoom2/zoom2.c                     |    3 +-
>   board/matrix_vision/mvblx/mvblx.c               |    4 +-
>   board/nokia/rx51/rx51.c                         |    4 +-
>   board/overo/overo.c                             |    3 +-
>   board/pandora/pandora.c                         |    3 +-
>   board/technexion/twister/twister.c              |    2 +-
>   board/teejet/mt_ventoux/mt_ventoux.c            |    2 +-
>   board/ti/am3517crane/am3517crane.c              |    3 +-
>   board/ti/beagle/beagle.c                        |    3 +-
>   board/ti/evm/evm.c                              |    3 +-
>   board/ti/omap5_evm/evm.c                        |    4 +-
>   board/ti/panda/panda.c                          |    3 +-
>   board/ti/sdp3430/sdp.c                          |    3 +-
>   board/ti/sdp4430/sdp.c                          |    4 +-
>   board/timll/devkit8000/devkit8000.c             |    3 +-
>   common/cmd_mmc.c                                |    7 +
>   drivers/mmc/arm_pl180_mmci.c                    |    1 +
>   drivers/mmc/bfin_sdh.c                          |    1 +
>   drivers/mmc/davinci_mmc.c                       |    1 +
>   drivers/mmc/fsl_esdhc.c                         |    1 +
>   drivers/mmc/ftsdc010_esdhc.c                    |    1 +
>   drivers/mmc/gen_atmel_mci.c                     |    1 +
>   drivers/mmc/mmc.c                               |   17 +++
>   drivers/mmc/mmc_spi.c                           |    1 +
>   drivers/mmc/mxcmmc.c                            |    1 +
>   drivers/mmc/mxsmmc.c                            |    1 +
>   drivers/mmc/omap_hsmmc.c                        |   78 +++++++++--
>   drivers/mmc/sdhci.c                             |    1 +
>   drivers/mmc/sh_mmcif.c                          |    1 +
>   drivers/mmc/tegra_mmc.c                         |    1 +
>   include/mmc.h                                   |    2 +
>   48 files changed, 324 insertions(+), 612 deletions(-)
>   create mode 100644 arch/arm/include/asm/omap_mmc.h
>


-- 
Regards,
Nikita.

  parent reply	other threads:[~2012-12-30  6:13 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-03 12:19 [U-Boot] [PATCH 0/7] omap mmc: implement card detect and write protection Nikita Kiryanov
2012-12-03 12:19 ` [U-Boot] [PATCH 1/7] omap: consolidate common mmc definitions Nikita Kiryanov
2012-12-03 12:19 ` [U-Boot] [PATCH 2/7] omap_hsmmc: fix out of bounds array access Nikita Kiryanov
2012-12-03 12:19 ` [U-Boot] [PATCH 3/7] omap_hsmmc: introduce omap_hsmmc_data struct Nikita Kiryanov
2012-12-03 12:19 ` [U-Boot] [PATCH 4/7] omap_hsmmc: implement driver check for card detection Nikita Kiryanov
2012-12-18 23:52   ` Tom Rini
2012-12-19  6:58     ` Nikita Kiryanov
2012-12-03 12:19 ` [U-Boot] [PATCH 5/7] cm-t35: implement board specific card detect check Nikita Kiryanov
2012-12-03 12:19 ` [U-Boot] [PATCH 6/7] mmc: add support for write protection Nikita Kiryanov
2012-12-03 12:19 ` [U-Boot] [PATCH 7/7] omap_hsmmc: add driver check " Nikita Kiryanov
2013-02-15 21:22   ` Tom Rini
2012-12-18  7:58 ` [U-Boot] [PATCH 0/7] omap mmc: implement card detect and " Nikita Kiryanov
2012-12-30  6:13 ` Nikita Kiryanov [this message]
2013-01-07 14:43   ` Tom Rini
2013-01-31  7:44     ` Igor Grinberg
2013-02-13  7:27 ` Nikita Kiryanov
2013-02-15 21:24 ` Tom Rini
2013-03-05  7:53   ` Nikita Kiryanov
2013-03-09  7:11 ` Igor Grinberg
2013-03-09 12:18   ` 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=50DFDB89.1010905@compulab.co.il \
    --to=nikita@compulab.co.il \
    --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.