mcp320x.txt 566 B

12345678910111213141516171819202122232425262728293031
  1. * Microchip Analog to Digital Converter (ADC)
  2. The node for this driver must be a child node of a SPI controller, hence
  3. all mandatory properties described in
  4. Documentation/devicetree/bindings/spi/spi-bus.txt
  5. must be specified.
  6. Required properties:
  7. - compatible: Must be one of the following, depending on the
  8. model:
  9. "mcp3001"
  10. "mcp3002"
  11. "mcp3004"
  12. "mcp3008"
  13. "mcp3201"
  14. "mcp3202"
  15. "mcp3204"
  16. "mcp3208"
  17. Examples:
  18. spi_controller {
  19. mcp3x0x@0 {
  20. compatible = "mcp3002";
  21. reg = <0>;
  22. spi-max-frequency = <1000000>;
  23. };
  24. };