1. 14 5月, 2012 1 次提交
  2. 28 3月, 2012 1 次提交
    • P
      ARM: pxa: fix regulator related build fail in magician_defconfig · 3a569132
      Paul Gortmaker 提交于
      commit 737f360d (linux-next)
      
        "regulator: Remove support for supplies specified by struct device"
      
      deletes the field from the struct, but this platform was still trying
      to set those fields.  Delete the assignments.
      
      arch/arm/mach-pxa/magician.c:581: error: unknown field 'dev' specified in initializer
      arch/arm/mach-pxa/magician.c:581: warning: initialization from incompatible pointer type
      arch/arm/mach-pxa/magician.c:585: error: unknown field 'dev' specified in initializer
      arch/arm/mach-pxa/magician.c:585: warning: initialization from incompatible pointer type
      
      arch/arm/mach-pxa/hx4700.c:683: error: unknown field 'dev' specified in initializer
      arch/arm/mach-pxa/hx4700.c:683: warning: initialization from incompatible pointer type
      arch/arm/mach-pxa/hx4700.c:687: error: unknown field 'dev' specified in initializer
      arch/arm/mach-pxa/hx4700.c:687: warning: initialization from incompatible pointer type
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Signed-off-by: NHaojian Zhuang <haojian.zhuang@gmail.com>
      3a569132
  3. 14 3月, 2012 3 次提交
  4. 06 3月, 2012 1 次提交
  5. 28 2月, 2012 2 次提交
    • P
      pxa/hx4700: Add ASIC3 LED support · 91cb8ee3
      Paul Parsons 提交于
      Add LED support for the HTC ASIC3. Underlying support is provided by the mfd/asic3 and leds/leds-asic3 drivers. An example configuration is provided by the pxa/hx4700 platform.
      Signed-off-by: NPaul Parsons <lost.distance@yahoo.com>
      Acked-by: NPhilipp Zabel <philipp.zabel@gmail.com>
      Signed-off-by: NHaojian Zhuang <haojian.zhuang@gmail.com>
      91cb8ee3
    • P
      pxa/hx4700: Correct StrataFlash block size discovery · 11407e57
      Paul Parsons 提交于
      The HP iPAQ hx4700 has 128Mb of flash provided by two Intel StrataFlash devices.
      The hx4700 platform configuration defines a single 128Mb flash resource,
      resulting in the MTD physmap-flash driver probing the first device only and
      presuming the second device is identical:
      
      physmap platform flash device: 08000000 at 00000000
      physmap-flash: Found 2 x16 devices at 0x0 in 32-bit bank. Manufacturer ID 0x000089 Chip ID 0x008816
      physmap-flash: Found 2 x16 devices at 0x4000000 in 32-bit bank
      <snip>
      erase region 0: offset=0x0,size=0x10000,blocks=4
      erase region 1: offset=0x40000,size=0x40000,blocks=255
      erase region 2: offset=0x4000000,size=0x10000,blocks=4
      erase region 3: offset=0x4040000,size=0x40000,blocks=255
      physmap-flash: 2 set(s) of 2 interleaved chips --> 32 partitions of 4096 KiB
      
      Unfortunately the two devices are not identical. The first has a device ID of
      0x8816, identifying a bottom parameter device. The second has a device ID of
      0x8813, identifying a top parameter device. By not probing the second device,
      physmap-flash does not discover the correct block sizes.
      
      This patch splits the configuration into two 64Mb flash resources, forcing
      physmap-flash to probe both devices and thus discover the correct block sizes:
      
      physmap platform flash device: 04000000 at 00000000
      physmap-flash: Found 2 x16 devices at 0x0 in 32-bit bank. Manufacturer ID 0x000089 Chip ID 0x008816
      <snip>
      erase region 0: offset=0x0,size=0x10000,blocks=4
      erase region 1: offset=0x40000,size=0x40000,blocks=255
      physmap-flash: 1 set(s) of 2 interleaved chips --> 16 partitions of 4096 KiB
      physmap platform flash device: 04000000 at 04000000
      physmap-flash: Found 2 x16 devices at 0x0 in 32-bit bank. Manufacturer ID 0x000089 Chip ID 0x008813
      <snip>
      erase region 0: offset=0x0,size=0x40000,blocks=255
      erase region 1: offset=0x3fc0000,size=0x10000,blocks=4
      physmap-flash: 1 set(s) of 2 interleaved chips --> 16 partitions of 4096 KiB
      Concatenating MTD devices:
      (0): "physmap-flash"
      (1): "physmap-flash"
      into device "physmap-flash"
      Signed-off-by: NPaul Parsons <lost.distance@yahoo.com>
      Signed-off-by: NHaojian Zhuang <haojian.zhuang@gmail.com>
      11407e57
  6. 17 2月, 2012 1 次提交
  7. 05 1月, 2012 1 次提交
  8. 14 11月, 2011 1 次提交
  9. 22 8月, 2011 1 次提交
  10. 12 7月, 2011 1 次提交
  11. 11 7月, 2011 1 次提交
  12. 21 5月, 2011 1 次提交
  13. 25 4月, 2011 1 次提交
  14. 21 3月, 2011 1 次提交
  15. 16 12月, 2010 1 次提交
  16. 01 12月, 2010 1 次提交
  17. 20 10月, 2010 1 次提交
    • N
      arm: remove machine_desc.io_pg_offst and .phys_io · 6451d778
      Nicolas Pitre 提交于
      Since we're now using addruart to establish the debug mapping, we can
      remove the io_pg_offst and phys_io members of struct machine_desc.
      
      The various declarations were removed using the following script:
      
        grep -rl MACHINE_START arch/arm | xargs \
        sed -i '/MACHINE_START/,/MACHINE_END/ { /\.\(phys_io\|io_pg_offst\)/d }'
      
      [ Initial patch was from Jeremy Kerr, example script from Russell King ]
      Signed-off-by: NNicolas Pitre <nicolas.pitre@linaro.org>
      Acked-by: Eric Miao <eric.miao at canonical.com>
      6451d778
  18. 08 10月, 2010 1 次提交
  19. 01 12月, 2009 2 次提交
  20. 17 11月, 2009 1 次提交
  21. 10 9月, 2009 2 次提交
  22. 16 6月, 2009 1 次提交
  23. 11 6月, 2009 1 次提交
  24. 05 6月, 2009 1 次提交