1. 19 2月, 2009 1 次提交
    • A
      atmel_serial might lose modem status change · 27c0c8e5
      Atsushi Nemoto 提交于
      I found a problem of handling of modem status of atmel_serial driver.
      
      With the commit 1ecc26 ("atmel_serial: split the interrupt handler"),
      handling of modem status signal was splitted into two parts.  The
      atmel_tasklet_func() compares new status with irq_status_prev, but
      irq_status_prev is not correct if signal status was changed while the port
      is closed.
      
      Here is a sequence to cause problem:
      
      1. Remote side sets CTS (and DSR).
      2. Local side close the port.
      3. Local side clears RTS and DTR.
      4. Remote side clears CTS and DSR.
      5. Local side reopen the port.  hw_stopped becomes 1.
      6. Local side sets RTS and DTR.
      7. Remote side sets CTS and DSR.
      
      Then CTS change interrupt can be received, but since CTS bit in
      irq_status_prev and new status is same, uart_handle_cts_change() will not
      be called (so hw_stopped will not be cleared, i.e.  cannot send any data).
      
      I suppose irq_status_prev should be initialized at somewhere in open
      sequence.
      
      Itai Levi pointed out that we need to initialize atmel_port->irq_status
      as well here. His analysis is as follows:
      
      > Regarding the second part of the patch (which resets irq_status_prev),
      > it turns out that both versions of the patch (mine and Atsushi's)
      > still leave enough room for faulty behavior when opening the port.
      >
      > This is because we are not resetting both irq_status_prev and
      > irq_status in atmel_startup() to CSR, which leads faulty behavior in
      > the following sequences:
      >
      > First case:
      > 1. closing the port while CTS line = 1 (TX not allowed)
      > 2. setting CTS line = 0 (TX allowed)
      > 3. opening the port
      > 4. transmitting one char
      > 5. Cannot transmit more chars, although CTS line is 0
      >
      > Second case:
      > 1. closing the port while CTS line = 0 (TX allowed)
      > 2. setting CTS line = 1 (TX not allowed)
      > 3. opening the port
      > 4. receiving some chars
      > 5. Now we can transmit, although CTS line is 1
      >
      > This reason for this is that the tasklet is scheduled as a result of
      > TX or RX interrupts (not a status change!), in steps 4 above. Inside
      > the tasklet, the atmel_port->irq_status (which holds the value from
      > the previous session) is compared to atmel_port->irq_status_prev.
      > Hence, a status-change of the CTS line is faultily detected.
      >
      > Both cases were verified on 9260 hardware.
      
      [haavard.skinnemoen@atmel.com: folded with patch from Itai Levi]
      Signed-off-by: NAtsushi Nemoto <anemo@mba.ocn.ne.jp>
      Signed-off-by: NHaavard Skinnemoen <haavard.skinnemoen@atmel.com>
      Cc: Remy Bohmer <linux@bohmer.net>
      Cc: Marc Pignat <marc.pignat@hevs.ch>
      Cc: Itai Levi <itai.levi.devel@gmail.com>
      Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      27c0c8e5
  2. 16 1月, 2009 1 次提交
  3. 07 11月, 2008 1 次提交
  4. 23 9月, 2008 1 次提交
  5. 07 8月, 2008 1 次提交
  6. 21 7月, 2008 2 次提交
  7. 02 7月, 2008 2 次提交
  8. 07 6月, 2008 1 次提交
  9. 28 4月, 2008 1 次提交
  10. 16 4月, 2008 1 次提交
  11. 03 4月, 2008 2 次提交
  12. 24 2月, 2008 1 次提交
  13. 09 2月, 2008 9 次提交
  14. 04 2月, 2008 1 次提交
  15. 15 11月, 2007 1 次提交
  16. 17 7月, 2007 1 次提交
    • H
      atmel_serial: fix break handling · 9e6077bd
      Haavard Skinnemoen 提交于
      The RXBRK field in the AT91/AT32 USART status register has the
      following definition according to e.g. the AT32AP7000 data sheet:
      
          RXBRK: Break Received/End of Break
          0: No Break received or End of Break detected since the last RSTSTA.
          1: Break Received or End of Break detected since the last RSTSTA.
      
      Thus, for each break, the USART sets the RXBRK bit twice. This patch
      modifies the driver to report the break event to the serial core only
      once by keeping track of whether a break condition is currently
      active. The break_active flag is reset as soon as a character is
      received, so even if we miss the start-of-break interrupt this should
      do the right thing.
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      Cc: Andrew Victor <andrew@sanpeople.com>
      Cc: Russell King <rmk@arm.linux.org.uk>
      Cc: Ivan Kuten <ivan.kuten@promwad.com>
      Cc: Nicolas Ferre <nicolas.ferre@rfo.atmel.com>
      Cc: Patrice Vilchez <patrice.vilchez@rfo.atmel.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      9e6077bd
  17. 03 5月, 2007 1 次提交
  18. 13 2月, 2007 1 次提交
  19. 08 2月, 2007 1 次提交
  20. 24 1月, 2007 2 次提交
  21. 09 12月, 2006 1 次提交
    • A
      [PATCH] tty: switch to ktermios · 606d099c
      Alan Cox 提交于
      This is the grungy swap all the occurrences in the right places patch that
      goes with the updates.  At this point we have the same functionality as
      before (except that sgttyb() returns speeds not zero) and are ready to
      begin turning new stuff on providing nobody reports lots of bugs
      
      If you are a tty driver author converting an out of tree driver the only
      impact should be termios->ktermios name changes for the speed/property
      setting functions from your upper layers.
      
      If you are implementing your own TCGETS function before then your driver
      was broken already and its about to get a whole lot more painful for you so
      please fix it 8)
      
      Also fill in c_ispeed/ospeed on init for most devices, although the current
      code will do this for you anyway but I'd like eventually to lose that extra
      paranoia
      
      [akpm@osdl.org: bluetooth fix]
      [mp3@de.ibm.com: sclp fix]
      [mp3@de.ibm.com: warning fix for tty3270]
      [hugh@veritas.com: fix tty_ioctl powerpc build]
      [jdike@addtoit.com: uml: fix ->set_termios declaration]
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NMartin Peschke <mp3@de.ibm.com>
      Acked-by: NPeter Oberparleiter <oberpar@de.ibm.com>
      Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
      Signed-off-by: NHugh Dickins <hugh@veritas.com>
      Signed-off-by: NJeff Dike <jdike@addtoit.com>
      Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      606d099c
  22. 04 12月, 2006 1 次提交
  23. 01 12月, 2006 2 次提交
  24. 05 10月, 2006 4 次提交
    • D
      IRQ: Maintain regs pointer globally rather than passing to IRQ handlers · 7d12e780
      David Howells 提交于
      Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
      of passing regs around manually through all ~1800 interrupt handlers in the
      Linux kernel.
      
      The regs pointer is used in few places, but it potentially costs both stack
      space and code to pass it around.  On the FRV arch, removing the regs parameter
      from all the genirq function results in a 20% speed up of the IRQ exit path
      (ie: from leaving timer_interrupt() to leaving do_IRQ()).
      
      Where appropriate, an arch may override the generic storage facility and do
      something different with the variable.  On FRV, for instance, the address is
      maintained in GR28 at all times inside the kernel as part of general exception
      handling.
      
      Having looked over the code, it appears that the parameter may be handed down
      through up to twenty or so layers of functions.  Consider a USB character
      device attached to a USB hub, attached to a USB controller that posts its
      interrupts through a cascaded auxiliary interrupt controller.  A character
      device driver may want to pass regs to the sysrq handler through the input
      layer which adds another few layers of parameter passing.
      
      I've build this code with allyesconfig for x86_64 and i386.  I've runtested the
      main part of the code on FRV and i386, though I can't test most of the drivers.
      I've also done partial conversion for powerpc and MIPS - these at least compile
      with minimal configurations.
      
      This will affect all archs.  Mostly the changes should be relatively easy.
      Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
      
      	struct pt_regs *old_regs = set_irq_regs(regs);
      
      And put the old one back at the end:
      
      	set_irq_regs(old_regs);
      
      Don't pass regs through to generic_handle_irq() or __do_IRQ().
      
      In timer_interrupt(), this sort of change will be necessary:
      
      	-	update_process_times(user_mode(regs));
      	-	profile_tick(CPU_PROFILING, regs);
      	+	update_process_times(user_mode(get_irq_regs()));
      	+	profile_tick(CPU_PROFILING);
      
      I'd like to move update_process_times()'s use of get_irq_regs() into itself,
      except that i386, alone of the archs, uses something other than user_mode().
      
      Some notes on the interrupt handling in the drivers:
      
       (*) input_dev() is now gone entirely.  The regs pointer is no longer stored in
           the input_dev struct.
      
       (*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking.  It does
           something different depending on whether it's been supplied with a regs
           pointer or not.
      
       (*) Various IRQ handler function pointers have been moved to type
           irq_handler_t.
      Signed-Off-By: NDavid Howells <dhowells@redhat.com>
      (cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
      7d12e780
    • H
      [PATCH] atmel_serial: Fix roundoff error in atmel_console_get_options · 4d5e392c
      Haavard Skinnemoen 提交于
      The atmel_console_get_options() function initializes the baud,
      parity and bits settings from the actual hardware setup, in
      case it has been initialized by a e.g. boot loader.
      
      The baud rate, however, is not necessarily exactly equal to one of
      the standard baud rates (115200, etc.) This means that the baud rate
      calculated by this function may be slightly higher or slightly lower
      than one of the standard baud rates.
      
      If the baud rate is slightly lower than the target, this causes
      problems when uart_set_option() tries to match the detected baud rate
      against the standard baud rate, as it will always select a baud rate
      that is lower or equal to the target rate. For example if the
      detected baud rate is slightly lower than 115200, usart_set_options()
      will select 57600.
      
      This patch fixes the problem by subtracting 1 from the value in BRGR
      when calculating the baud rate. The detected baud rate will thus
      always be higher than the nearest standard baud rate, and
      uart_set_options() will end up doing the right thing.
      
      Tested on ATSTK1000 and AT91RM9200-EK boards. Both are broken without
      this patch.
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      Acked-by: NAndrew Victor <andrew@sanpeople.com>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4d5e392c
    • H
      [PATCH] atmel_serial: Support AVR32 · acca9b83
      Haavard Skinnemoen 提交于
      Make CONFIG_SERIAL_ATMEL selectable on AVR32 and #ifdef out some ARM-
      specific code in the driver.
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      Acked-by: NAndrew Victor <andrew@sanpeople.com>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      acca9b83
    • H
      [PATCH] atmel_serial: Pass fixed register mappings through platform_data · 75d35213
      Haavard Skinnemoen 提交于
      In order to initialize the serial console early, the atmel_serial
      driver had to do a hack where it compared the physical address of the
      port with an address known to be permanently mapped, and used it as a
      virtual address. This got around the limitation that ioremap() isn't
      always available when the console is being initalized.
      
      This patch removes that hack and replaces it with a new "regs" field
      in struct atmel_uart_data that the board-specific code can initialize
      to a fixed virtual mapping for platform devices where this is possible.
      It also initializes the DBGU's regs field with the address the driver
      used to check against.
      
      On AVR32, the "regs" field is initialized from the physical base
      address when this it can be accessed through a permanently 1:1 mapped
      segment, i.e. the P4 segment.
      
      If regs is NULL, the console initialization is delayed until the "real"
      driver is up and running and ioremap() can be used.
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      Acked-by: NAndrew Victor <andrew@sanpeople.com>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      75d35213