1. 28 10月, 2012 1 次提交
    • P
      ARM: pxa: hx4700: Fix backlight PWM device number · 8d6b00f5
      Paul Parsons 提交于
      Recent changes to PXA PWM support changed the PXA27X PWM device
      numbering scheme.
      
      The linux-3.5 PXA PWM driver followed the hardware numbering scheme for
      the 4 PWMs, while the linux-3.6-rc1 PXA PWM driver has adopted a linear
      numbering scheme:
      
      Address		Hardware	3.5 pwm_id	3.6-rc1 pwm_id
      0x40b00000	PWM0		0		0
      0x40b00010	PWM2		2		1
      0x40c00000	PWM1		1		2
      0x40c00010	PWM3		3		3
      
      The hx4700 backlight uses PWM1 at 0x40c00000. Consequently the pwm_id
      must be changed from 1 to 2.
      
      This patch fixes the backlight PWM device number and at the same time
      moves from the legacy PWM API (pwm_id) to the new PWM API (pwm_lookup).
      Signed-off-by: NPaul Parsons <lost.distance@yahoo.com>
      Cc: Thierry Reding <thierry.reding@avionic-design.de>
      Signed-off-by: NHaojian Zhuang <haojian.zhuang@gmail.com>
      8d6b00f5
  2. 14 9月, 2012 1 次提交
  3. 01 7月, 2012 2 次提交
  4. 14 5月, 2012 2 次提交
  5. 05 5月, 2012 1 次提交
  6. 03 5月, 2012 3 次提交
  7. 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
  8. 14 3月, 2012 3 次提交
  9. 06 3月, 2012 1 次提交
  10. 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
  11. 17 2月, 2012 1 次提交
  12. 05 1月, 2012 1 次提交
  13. 14 11月, 2011 1 次提交
  14. 22 8月, 2011 1 次提交
  15. 12 7月, 2011 1 次提交
  16. 11 7月, 2011 1 次提交
  17. 21 5月, 2011 1 次提交
  18. 25 4月, 2011 1 次提交
  19. 21 3月, 2011 1 次提交
  20. 16 12月, 2010 1 次提交
  21. 01 12月, 2010 1 次提交
  22. 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
  23. 08 10月, 2010 1 次提交
  24. 01 12月, 2009 2 次提交
  25. 17 11月, 2009 1 次提交
  26. 10 9月, 2009 2 次提交
  27. 16 6月, 2009 1 次提交
  28. 11 6月, 2009 1 次提交
  29. 05 6月, 2009 1 次提交