ti-bluetooth.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Texas Instruments Bluetooth Chips
  2. ---------------------------------
  3. This documents the binding structure and common properties for serial
  4. attached TI Bluetooth devices. The following chips are included in this
  5. binding:
  6. * TI CC256x Bluetooth devices
  7. * TI WiLink 7/8 (wl12xx/wl18xx) Shared Transport BT/FM/GPS devices
  8. TI WiLink devices have a UART interface for providing Bluetooth, FM radio,
  9. and GPS over what's called "shared transport". The shared transport is
  10. standard BT HCI protocol with additional channels for the other functions.
  11. TI WiLink devices also have a separate WiFi interface as described in
  12. wireless/ti,wlcore.txt.
  13. This bindings follows the UART slave device binding in
  14. ../serial/slave-device.txt.
  15. Required properties:
  16. - compatible: should be one of the following:
  17. "ti,cc2560"
  18. "ti,wl1271-st"
  19. "ti,wl1273-st"
  20. "ti,wl1281-st"
  21. "ti,wl1283-st"
  22. "ti,wl1285-st"
  23. "ti,wl1801-st"
  24. "ti,wl1805-st"
  25. "ti,wl1807-st"
  26. "ti,wl1831-st"
  27. "ti,wl1835-st"
  28. "ti,wl1837-st"
  29. Optional properties:
  30. - enable-gpios : GPIO signal controlling enabling of BT. Active high.
  31. - vio-supply : Vio input supply (1.8V)
  32. - vbat-supply : Vbat input supply (2.9-4.8V)
  33. - clocks : Must contain an entry, for each entry in clock-names.
  34. See ../clocks/clock-bindings.txt for details.
  35. - clock-names : Must include the following entry:
  36. "ext_clock" (External clock provided to the TI combo chip).
  37. - nvmem-cells: phandle to nvmem data cell that contains a 6 byte BD address
  38. with the most significant byte first (big-endian).
  39. - nvmem-cell-names: "bd-address" (required when nvmem-cells is specified)
  40. Example:
  41. &serial0 {
  42. compatible = "ns16550a";
  43. ...
  44. bluetooth {
  45. compatible = "ti,wl1835-st";
  46. enable-gpios = <&gpio1 7 GPIO_ACTIVE_HIGH>;
  47. clocks = <&clk32k_wl18xx>;
  48. clock-names = "ext_clock";
  49. nvmem-cells = <&bd_address>;
  50. nvmem-cell-names = "bd-address";
  51. };
  52. };