devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH 0/3] DRA72: MMC HS200 support
@ 2014-11-13 14:54 Kishon Vijay Abraham I
  2014-11-13 14:54 ` [RFC PATCH 1/3] mmc: omap_hsmmc: set host capabilities by reading MMCHS_CAPA2 register Kishon Vijay Abraham I
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2014-11-13 14:54 UTC (permalink / raw)
  To: chris, ulf.hansson, tony
  Cc: devicetree, linux-kernel, linux-mmc, linux-omap, afenkart,
	nsekhar, kishon

Added HS200 to improve EMMC throughput for dra72.

With HS200
==============
Read throughput
./dd if=/dev/mmcblk0 of=/dev/null bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 1.46028 s, 71.8 MB/s

Write throughput
root@dra7xx-evm:/# ./dd if=/dev/zero of=/dev/mmcblk0 bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 9.34884 s, 11.2 MB/s


WithOUT HS200
==============
Read throughput
./dd if=/dev/mmcblk0 of=/dev/null bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 2.6423 s, 39.7 MB/s

Write throughput
./dd if=/dev/zero of=/dev/mmcblk0 bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 9.3556 s, 11.2 MB/s

Balaji T K (1):
  mmc: omap_hsmmc: add tuning support

Kishon Vijay Abraham I (1):
  ARM: dts: dra72-evm: Set the max-frequency to 192MHz

Viswanath Puttagunta (1):
  mmc: omap_hsmmc: set host capabilities by reading MMCHS_CAPA2
    register

 arch/arm/boot/dts/dra72-evm.dts |    1 +
 drivers/mmc/host/omap_hsmmc.c   |  342 ++++++++++++++++++++++++++++++++++++++-
 2 files changed, 341 insertions(+), 2 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [RFC PATCH 0/3] DRA72: MMC HS200 support
@ 2014-11-13 12:56 Kishon Vijay Abraham I
  0 siblings, 0 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2014-11-13 12:56 UTC (permalink / raw)
  To: chris, ulf.hansson, tony
  Cc: devicetree, linux-arm-kernel, linux-kernel, linux-mmc, linux-omap,
	afenkart, nsekhar, kishon

Added HS200 to improve EMMC throughput for dra72.

With HS200
==============
Read throughput
./dd if=/dev/mmcblk0 of=/dev/null bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 1.46028 s, 71.8 MB/s

Write throughput
root@dra7xx-evm:/# ./dd if=/dev/zero of=/dev/mmcblk0 bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 9.34884 s, 11.2 MB/s


WithOUT HS200
==============
Read throughput
./dd if=/dev/mmcblk0 of=/dev/null bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 2.6423 s, 39.7 MB/s

Write throughput
./dd if=/dev/zero of=/dev/mmcblk0 bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 9.3556 s, 11.2 MB/s

Balaji T K (1):
  mmc: omap_hsmmc: add tuning support

Kishon Vijay Abraham I (1):
  ARM: dts: dra72-evm: Set the max-frequency to 192MHz

Viswanath Puttagunta (1):
  mmc: omap_hsmmc: set host capabilities by reading MMCHS_CAPA2
    register

 arch/arm/boot/dts/dra72-evm.dts |    1 +
 drivers/mmc/host/omap_hsmmc.c   |  342 ++++++++++++++++++++++++++++++++++++++-
 2 files changed, 341 insertions(+), 2 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [RFC PATCH 0/3] DRA72: MMC HS200 support
@ 2014-11-13 12:55 Kishon Vijay Abraham I
  0 siblings, 0 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2014-11-13 12:55 UTC (permalink / raw)
  To: chris, ulf.hansson, tony
  Cc: devicetree, linux-arm-kernel, linux-kernel, linux-mmc, linux-omap,
	afenkart, kishon

Added HS200 to improve EMMC throughput for dra72.

With HS200
==============
Read throughput
./dd if=/dev/mmcblk0 of=/dev/null bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 1.46028 s, 71.8 MB/s

Write throughput
root@dra7xx-evm:/# ./dd if=/dev/zero of=/dev/mmcblk0 bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 9.34884 s, 11.2 MB/s


WithOUT HS200
==============
Read throughput
./dd if=/dev/mmcblk0 of=/dev/null bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 2.6423 s, 39.7 MB/s

Write throughput
./dd if=/dev/zero of=/dev/mmcblk0 bs=1M count=100 oflag=sync
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 9.3556 s, 11.2 MB/s

Balaji T K (1):
  mmc: omap_hsmmc: add tuning support

Kishon Vijay Abraham I (1):
  ARM: dts: dra72-evm: Set the max-frequency to 192MHz

Viswanath Puttagunta (1):
  mmc: omap_hsmmc: set host capabilities by reading MMCHS_CAPA2
    register

 arch/arm/boot/dts/dra72-evm.dts |    1 +
 drivers/mmc/host/omap_hsmmc.c   |  342 ++++++++++++++++++++++++++++++++++++++-
 2 files changed, 341 insertions(+), 2 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-11-13 14:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-13 14:54 [RFC PATCH 0/3] DRA72: MMC HS200 support Kishon Vijay Abraham I
2014-11-13 14:54 ` [RFC PATCH 1/3] mmc: omap_hsmmc: set host capabilities by reading MMCHS_CAPA2 register Kishon Vijay Abraham I
2014-11-13 14:54 ` [RFC PATCH 2/3] mmc: omap_hsmmc: add tuning support Kishon Vijay Abraham I
2014-11-13 14:54 ` [RFC PATCH 3/3] ARM: dts: dra72-evm: Set the max-frequency to 192MHz Kishon Vijay Abraham I
2014-11-13 14:56 ` [RFC PATCH 0/3] DRA72: MMC HS200 support Kishon Vijay Abraham I
  -- strict thread matches above, loose matches on Subject: below --
2014-11-13 12:56 Kishon Vijay Abraham I
2014-11-13 12:55 Kishon Vijay Abraham I

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).