h3100.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Support for Compaq iPAQ H3100 handheld computer
  3. *
  4. * Copyright (c) 2000,1 Compaq Computer Corporation. (Author: Jamey Hicks)
  5. * Copyright (c) 2009 Dmitry Artamonow <mad_soft@inbox.ru>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. */
  12. #include <linux/init.h>
  13. #include <linux/kernel.h>
  14. #include <linux/gpio.h>
  15. #include <asm/mach-types.h>
  16. #include <asm/mach/arch.h>
  17. #include <asm/mach/irda.h>
  18. #include <mach/h3xxx.h>
  19. #include "generic.h"
  20. /*
  21. * helper for sa1100fb
  22. */
  23. static void h3100_lcd_power(int enable)
  24. {
  25. if (!gpio_request(H3XXX_EGPIO_LCD_ON, "LCD ON")) {
  26. gpio_set_value(H3100_GPIO_LCD_3V_ON, enable);
  27. gpio_direction_output(H3XXX_EGPIO_LCD_ON, enable);
  28. gpio_free(H3XXX_EGPIO_LCD_ON);
  29. } else {
  30. pr_err("%s: can't request H3XXX_EGPIO_LCD_ON\n", __func__);
  31. }
  32. }
  33. static void __init h3100_map_io(void)
  34. {
  35. h3xxx_map_io();
  36. sa1100fb_lcd_power = h3100_lcd_power;
  37. /* Older bootldrs put GPIO2-9 in alternate mode on the
  38. assumption that they are used for video */
  39. GAFR &= ~0x000001fb;
  40. }
  41. /*
  42. * This turns the IRDA power on or off on the Compaq H3100
  43. */
  44. static int h3100_irda_set_power(struct device *dev, unsigned int state)
  45. {
  46. gpio_set_value(H3100_GPIO_IR_ON, state);
  47. return 0;
  48. }
  49. static void h3100_irda_set_speed(struct device *dev, unsigned int speed)
  50. {
  51. gpio_set_value(H3100_GPIO_IR_FSEL, !(speed < 4000000));
  52. }
  53. static struct irda_platform_data h3100_irda_data = {
  54. .set_power = h3100_irda_set_power,
  55. .set_speed = h3100_irda_set_speed,
  56. };
  57. static struct gpio_default_state h3100_default_gpio[] = {
  58. { H3100_GPIO_IR_ON, GPIO_MODE_OUT0, "IrDA power" },
  59. { H3100_GPIO_IR_FSEL, GPIO_MODE_OUT0, "IrDA fsel" },
  60. { H3XXX_GPIO_COM_DCD, GPIO_MODE_IN, "COM DCD" },
  61. { H3XXX_GPIO_COM_CTS, GPIO_MODE_IN, "COM CTS" },
  62. { H3XXX_GPIO_COM_RTS, GPIO_MODE_OUT0, "COM RTS" },
  63. { H3100_GPIO_LCD_3V_ON, GPIO_MODE_OUT0, "LCD 3v" },
  64. };
  65. static void __init h3100_mach_init(void)
  66. {
  67. h3xxx_init_gpio(h3100_default_gpio, ARRAY_SIZE(h3100_default_gpio));
  68. h3xxx_mach_init();
  69. sa11x0_register_irda(&h3100_irda_data);
  70. }
  71. MACHINE_START(H3100, "Compaq iPAQ H3100")
  72. .boot_params = 0xc0000100,
  73. .map_io = h3100_map_io,
  74. .init_irq = sa1100_init_irq,
  75. .timer = &sa1100_timer,
  76. .init_machine = h3100_mach_init,
  77. MACHINE_END