board-nokia.h 924 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * arch/arm/plat-omap/include/mach/board-nokia.h
  3. *
  4. * Information structures for Nokia-specific board config data
  5. *
  6. * Copyright (C) 2005 Nokia Corporation
  7. */
  8. #ifndef _OMAP_BOARD_NOKIA_H
  9. #define _OMAP_BOARD_NOKIA_H
  10. #include <linux/types.h>
  11. #define OMAP_TAG_NOKIA_BT 0x4e01
  12. #define OMAP_TAG_WLAN_CX3110X 0x4e02
  13. #define OMAP_TAG_CBUS 0x4e03
  14. #define OMAP_TAG_EM_ASIC_BB5 0x4e04
  15. #define BT_CHIP_CSR 1
  16. #define BT_CHIP_TI 2
  17. #define BT_SYSCLK_12 1
  18. #define BT_SYSCLK_38_4 2
  19. struct omap_bluetooth_config {
  20. u8 chip_type;
  21. u8 bt_wakeup_gpio;
  22. u8 host_wakeup_gpio;
  23. u8 reset_gpio;
  24. u8 bt_uart;
  25. u8 bd_addr[6];
  26. u8 bt_sysclk;
  27. };
  28. struct omap_wlan_cx3110x_config {
  29. u8 chip_type;
  30. s16 power_gpio;
  31. s16 irq_gpio;
  32. s16 spi_cs_gpio;
  33. };
  34. struct omap_cbus_config {
  35. s16 clk_gpio;
  36. s16 dat_gpio;
  37. s16 sel_gpio;
  38. };
  39. struct omap_em_asic_bb5_config {
  40. s16 retu_irq_gpio;
  41. s16 tahvo_irq_gpio;
  42. };
  43. #endif