1. 09 6月, 2009 15 次提交
  2. 06 6月, 2009 2 次提交
  3. 05 6月, 2009 2 次提交
  4. 04 6月, 2009 3 次提交
  5. 03 6月, 2009 1 次提交
  6. 02 6月, 2009 1 次提交
  7. 30 5月, 2009 1 次提交
  8. 27 5月, 2009 9 次提交
  9. 26 5月, 2009 1 次提交
  10. 24 5月, 2009 1 次提交
  11. 23 5月, 2009 2 次提交
  12. 22 5月, 2009 2 次提交
    • J
      serial: fix lost character after sysrq · 40ff1624
      Jason Wessel 提交于
      After creating an automated regression test to test the sysrq
      responses while running a linux image in qemu, I found that the
      simulated uart was eating the character right after the sysrq about
      75% of the time.
      
      The problem is that the qemu sets the LSR_DR (data ready) bit on a
      serial break.  The automated tests can send a break and the sysrq
      character quickly enough that the qemu serial fifo has a real
      character available. When there is valid character in the fifo, it
      gets consumed by the serial driver in the guest OS.
      
      The real hardware also appears to set the LSR_DR but always appears to
      have a null byte in this condition.  This patch changes the qemu
      behavior to match the tested characteristics of a real 16550 chip.
      Signed-off-by: NJason Wessel <jason.wessel@windriver.com>
      40ff1624
    • J
      usb-serial: implement break event. · 7e57f049
      Jason Wessel 提交于
      Implement the serial break via usb serial.
      
      The second data byte in ftdi status packet contains the break status.
      The values were already defined in usb-serial.c so it was a matter of
      making use of the event_trigger to form a urb to send over to the host
      controller with the serial break status set.
      
      This was tested against a linux development image which enables sysrq
      via a serial break on the ftdi usb console.
      Signed-off-by: NJason Wessel <jason.wessel@windriver.com>
      7e57f049