cc770.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. Memory mapped Bosch CC770 and Intel AN82527 CAN controller
  2. Note: The CC770 is a CAN controller from Bosch, which is 100%
  3. compatible with the old AN82527 from Intel, but with "bugs" being fixed.
  4. Required properties:
  5. - compatible : should be "bosch,cc770" for the CC770 and "intc,82527"
  6. for the AN82527.
  7. - reg : should specify the chip select, address offset and size required
  8. to map the registers of the controller. The size is usually 0x80.
  9. - interrupts : property with a value describing the interrupt source
  10. (number and sensitivity) required for the controller.
  11. Optional properties:
  12. - bosch,external-clock-frequency : frequency of the external oscillator
  13. clock in Hz. Note that the internal clock frequency used by the
  14. controller is half of that value. If not specified, a default
  15. value of 16000000 (16 MHz) is used.
  16. - bosch,clock-out-frequency : slock frequency in Hz on the CLKOUT pin.
  17. If not specified or if the specified value is 0, the CLKOUT pin
  18. will be disabled.
  19. - bosch,slew-rate : slew rate of the CLKOUT signal. If not specified,
  20. a resonable value will be calculated.
  21. - bosch,disconnect-rx0-input : see data sheet.
  22. - bosch,disconnect-rx1-input : see data sheet.
  23. - bosch,disconnect-tx1-output : see data sheet.
  24. - bosch,polarity-dominant : see data sheet.
  25. - bosch,divide-memory-clock : see data sheet.
  26. - bosch,iso-low-speed-mux : see data sheet.
  27. For further information, please have a look to the CC770 or AN82527.
  28. Examples:
  29. can@3,100 {
  30. compatible = "bosch,cc770";
  31. reg = <3 0x100 0x80>;
  32. interrupts = <2 0>;
  33. interrupt-parent = <&mpic>;
  34. bosch,external-clock-frequency = <16000000>;
  35. };