All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andre Schwarz <andre.schwarz@matrix-vision.de>
To: Wolfgang Wegner <wolfgang@leila.ping.de>
Cc: linuxppc-dev@ozlabs.org, Sai Amruta <amrutasai.p@gmail.com>
Subject: Re: MicroSD (SPI mode) support in Linux-2.6.26-1
Date: Fri, 23 Jan 2009 15:46:17 +0100	[thread overview]
Message-ID: <4979D839.3060503@matrix-vision.de> (raw)
In-Reply-To: <20090123134001.GR2004@leila.ping.de>

Wolfgang Wegner wrote:
> Hi Andre,
>
> On Fri, Jan 23, 2009 at 01:43:47PM +0100, Andre Schwarz wrote:
>   
>> Sai Amruta wrote:
>>     
>>> Hi All,
>>>
>>> I am using linux-2.6.26 on MPC8567 and microSD is connected through 
>>> SPI interface.
>>> Is the existing mmc driver supports microSD?
>>>       
>> yes - it's working perfectly fine on my MPC8343.
>> Even with SDHC cards ;-)
>>     
>
> that's great to hear - is there anything like a HOWTO on how to set
> this up on top of the SPI driver (probably involving some custom GPIO
> stuff for card and WP detection) out there?
> I tried to but did not get it to work on MCF53xx (uClinux 2.6.23-uc0)
> and probably did not find the right search strings either.
>
> Regards,
> Wolfgang
>
>   
I'm sorry - no README.
All I can do is provide the info how it works for me :

platform code : provide init and chips select functions.

static void mvblm7_spi_activate_cs(u8 cs, u8 polarity)
{
        u32 data = in_be32( mvblm7_gpio + 2 );
        if (polarity)
                out_be32( mvblm7_gpio + 2, data | MVBLM7_MMC_CS );
        else
                out_be32( mvblm7_gpio + 2, data & ~MVBLM7_MMC_CS );
}

static void mvblm7_spi_deactivate_cs(u8 cs, u8 polarity)
{
        u32 data = in_be32( mvblm7_gpio + 2 );
        if (!polarity)
                out_be32( mvblm7_gpio + 2, data | MVBLM7_MMC_CS );
        else
                out_be32( mvblm7_gpio + 2, data & ~MVBLM7_MMC_CS );
}

static struct mmc_spi_platform_data mvblm7_mmc_pdata = {
        .ocr_mask = MMC_VDD_33_34,
};

static struct spi_board_info mvblm7_spi_boardinfo = {
        .bus_num = 0x7000,
        .chip_select = 0,
        .max_speed_hz = 50000000,
        .modalias = "mmc_spi",
        .platform_data = &mvblm7_mmc_pdata,
};

static int __init mvblm7_spi_init(void)
{
        return fsl_spi_init(&mvblm7_spi_boardinfo, 1,
                            mvblm7_spi_activate_cs,
                            mvblm7_spi_deactivate_cs);
}

machine_device_initcall(mvblm7, mvblm7_spi_init);


Kernel config :
CONFIG_MMC=y
CONFIG_MMC_BLOCK=y
CONFIG_MMC_BLOCK_BOUNCE=y
CONFIG_MMC_SPI=m

and of course the driver for your SPI controller ...

CONFIG_SPI=y
CONFIG_SPI_MASTER=y
CONFIG_SPI_MPC83xx=y


I've had no time to set up hotplug/card detect features.
Actually my system boots with card plugged in and and I do a "insmod 
mmc_spi.ko" -> card gets probed.

->mount -t vfat /dev/mmcblk0p1  /mnt/mmc


hope this helps.


cheers,
Andre

MATRIX VISION GmbH, Talstraße 16, DE-71570 Oppenweiler
Registergericht: Amtsgericht Stuttgart, HRB 271090
Geschäftsführer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Hans-Joachim Reich

  reply	other threads:[~2009-01-23 14:46 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-23  3:59 MicroSD (SPI mode) support in Linux-2.6.26-1 Sai Amruta
2009-01-23 12:43 ` Andre Schwarz
2009-01-23 13:40   ` Wolfgang Wegner
2009-01-23 14:46     ` Andre Schwarz [this message]
2009-01-23 15:27     ` Andre Schwarz

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=4979D839.3060503@matrix-vision.de \
    --to=andre.schwarz@matrix-vision.de \
    --cc=amrutasai.p@gmail.com \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=wolfgang@leila.ping.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.