mcp251x.h 975 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef __CAN_PLATFORM_MCP251X_H__
  2. #define __CAN_PLATFORM_MCP251X_H__
  3. /*
  4. *
  5. * CAN bus driver for Microchip 251x CAN Controller with SPI Interface
  6. *
  7. */
  8. #include <linux/spi/spi.h>
  9. /**
  10. * struct mcp251x_platform_data - MCP251X SPI CAN controller platform data
  11. * @oscillator_frequency: - oscillator frequency in Hz
  12. * @board_specific_setup: - called before probing the chip (power,reset)
  13. * @transceiver_enable: - called to power on/off the transceiver
  14. * @power_enable: - called to power on/off the mcp *and* the
  15. * transceiver
  16. *
  17. * Please note that you should define power_enable or transceiver_enable or
  18. * none of them. Defining both of them is no use.
  19. *
  20. */
  21. struct mcp251x_platform_data {
  22. unsigned long oscillator_frequency;
  23. int (*board_specific_setup)(struct spi_device *spi);
  24. int (*transceiver_enable)(int enable);
  25. int (*power_enable) (int enable);
  26. };
  27. #endif /* __CAN_PLATFORM_MCP251X_H__ */