An error occurred fetching the project authors.
- 07 Mar, 2010 1 commit
-
-
Yusuke Goda authored
Enable MMC_CAP_XX support in the tmio_mmc driver if pdata->capabilities is set. Signed-off-by:
Yusuke Goda <goda.yusuke@renesas.com> Signed-off-by:
Magnus Damm <damm@opensource.se> Signed-off-by:
Samuel Ortiz <sameo@linux.intel.com>
-
- 18 Jan, 2010 1 commit
-
-
Ian Molton authored
This patch abstracts out the CNF area code from tmio_mmc which is not present in all hardware that can use this driver. This is required so that we can support non-toshiba based hardware. ASIC3 support by Philipp Zabel Signed-off-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Magnus Damm <damm@opensource.se> Signed-off-by:
Samuel Ortiz <sameo@linux.intel.com>
-
- 15 Dec, 2009 1 commit
-
-
Magnus Damm authored
Improve the /proc/interrupts output so the irq number can be mapped to platform device on boards with multiple tmio_mmc instances. Signed-off-by:
Magnus Damm <damm@opensource.se> Cc: <linux-mmc@vger.kernel.org> Cc: Paul Mundt <lethal@linux-sh.org> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- 13 Jun, 2009 7 commits
-
-
Philipp Zabel authored
Now tmio_mmc is able to drive the MMC/SD cell in ASIC3. Signed-off-by:
Philipp Zabel <philipp.zabel@gmail.com> Acked-by:
Ian Molton <spyro@f2s.com> Signed-off-by:
Pierre Ossman <pierre@ossman.eu>
-
Ian Molton authored
This patch fixes the clock setup in tmio_mmc. * Incorrect divider setting * Cruft written to the clock registers (seemingly harmless but Not Good (tm)) It also eliminates some unnecessary ifs and tidies the loop syntax. Thanks to Philipp Zabel who discovered the divider issue, commenting "Except for the SDCLK = HCLK (divider bypassed) case, the clock setting resulted in double the requested frequency. The smallest possible frequency (f_max/512) is configured with a divider setting 0x80, not 0x40." Signed-off-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Pierre Ossman <pierre@ossman.eu>
-
Philipp Zabel authored
ASIC3 can disable the memory, so we need to wait for mfd_cell->enable to enable the memory before we can map the SD control registers. Signed-off-by:
Philipp Zabel <philipp.zabel@gmail.com> Acked-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Pierre Ossman <pierre@ossman.eu>
-
Philipp Zabel authored
Signed-off-by:
Philipp Zabel <philipp.zabel@gmail.com> Acked-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Pierre Ossman <pierre@ossman.eu>
-
Philipp Zabel authored
Use an IRQF_TRIGGER_ flag in request_irq instead. Signed-off-by:
Philipp Zabel <philipp.zabel@gmail.com> Acked-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Pierre Ossman <pierre@ossman.eu>
-
Philipp Zabel authored
Some ASIC3 devices in the wild are connected with the address bus shifted by one line, so that its 16-bit registers appear 32-bit aligned in host memory space. Signed-off-by:
Philipp Zabel <philipp.zabel@gmail.com> Acked-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Pierre Ossman <pierre@ossman.eu>
-
Philipp Zabel authored
The Toshiba parts all have a 24 MHz HCLK, but HTC ASIC3 has a 24.576 MHz HCLK and AMD Imageon w228x's HCLK is 80 MHz. With this patch, the MFD driver provides the HCLK frequency to tmio_mmc via mfd_cell->driver_data. Signed-off-by:
Philipp Zabel <philipp.zabel@gmail.com> Acked-by:
Ian Molton <ian@mnementh.co.uk> Acked-by:
Samuel Ortiz <sameo@openedhand.com> Signed-off-by:
Pierre Ossman <pierre@ossman.eu>
-
- 24 Mar, 2009 2 commits
-
-
Magnus Damm authored
Update the tmio_mmc code to call mmc_free_host() when done using the private data. Without this fix the driver frees memory and then keeps on using it as private data. Signed-off-by:
Magnus Damm <damm@opensource.se> Acked-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Magnus Damm authored
Update the tmio_mmc code to use resource_size(). With this patch applied the correct resource size is passed to ioremap(). Signed-off-by:
Magnus Damm <damm@opensource.se> Acked-by:
Ian Molton <ian@mnementh.co.uk> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 31 Dec, 2008 1 commit
-
-
Julia Lawall authored
In each case, if the NULL test is necessary, then the dereference should be moved below the NULL test. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // <smpl> @@ type T; expression E; identifier i,fld; statement S; @@ - T i = E->fld; + T i; ... when != E when != i if (E == NULL) S + i = E->fld; // </smpl> Signed-off-by:
Julia Lawall <julia@diku.dk> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 10 Aug, 2008 1 commit
-
-
Ian Molton authored
This patch adds support for the MMC subdevice 'cell' commonly found in TMIO based MFDs. Signed-off-by:
Ian Molton <spyro@f2s.com> Acked-by:
Pierre Ossman <drzeus@drzeus.cx> Signed-off-by:
Samuel Ortiz <sameo@openedhand.com>
-