zmatt

rs485 DT properties

Apr 24th, 2020
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. // 8250-omap:
  2. // XXX rs485 properties ignored by 8250 in kernel 4.19 ... has this been fixed yet?
  3. rts-gpios = GPIO;       // optional, requires kernel 5.3 or later
  4. rs485-rts-active-low;   // optional (boolean).  contrary to the name, this makes rts active-high.
  5.  
  6. // omap-serial:
  7. rts-gpio = GPIO;        // required
  8. rs485-rts-active-high;  // optional (boolean).  contrary to the name, this makes rts active-low
  9.  
  10. // common:
  11. rs485-rts-delay = <DELAY_BEFORE_SEND DELAY_AFTER_SEND>;  // optional
  12. rs485-rx-during-tx;                     // optional (boolean)
  13. linux,rs485-enabled-at-boot-time;       // optional (boolean)
Add Comment
Please, Sign In to add comment