<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/uart/uart_dev_imx.c, branch releng/10.2</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F10.2</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F10.2'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2015-05-23T20:54:25Z</updated>
<entry>
<title>MFC r279723, r279724:</title>
<updated>2015-05-23T20:54:25Z</updated>
<author>
<name>Ian Lepore</name>
<email>ian@FreeBSD.org</email>
</author>
<published>2015-05-23T20:54:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ce1563f57045eaa1141637271a1409facff93ca5'/>
<id>urn:sha1:ce1563f57045eaa1141637271a1409facff93ca5</id>
<content type='text'>
  Define new linker set, UART_FDT_CLASS_AND_DEVICE, for registering full
  (class and device) FDT UART. Define second one, UART_FDT_CLASS, for UART
  class only.

  Move the uart_class definitions and fdt compat data into the individual
  uart implementations, and export them using the new linker-set mechanism.
</content>
</entry>
<entry>
<title>MFC r272334, r273004:</title>
<updated>2014-10-26T04:08:34Z</updated>
<author>
<name>Ian Lepore</name>
<email>ian@FreeBSD.org</email>
</author>
<published>2014-10-26T04:08:34Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5689f87a76dae1250743faec4512a69a3f3a6f64'/>
<id>urn:sha1:5689f87a76dae1250743faec4512a69a3f3a6f64</id>
<content type='text'>
  Return the actual baud rate programmed in the hardware rather than 115200.
  This allows the "3wire" entry in /etc/ttys (with no speed specified) to work.

  Use the FIFOs in the imx5/imx6 uart hardware instead of interrupting on
  each byte sent or received.
</content>
</entry>
<entry>
<title>MFC 264981, 264983, 264985:</title>
<updated>2014-05-17T22:31:40Z</updated>
<author>
<name>Ian Lepore</name>
<email>ian@FreeBSD.org</email>
</author>
<published>2014-05-17T22:31:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6ce949d79d1fb497be1d4a0ee79d10e2f6337ca1'/>
<id>urn:sha1:6ce949d79d1fb497be1d4a0ee79d10e2f6337ca1</id>
<content type='text'>
  The freescale imx uart driver works for the whole i.MX family, so rename
  the header file to not have "5xx" in the name.

  Flesh out imx_uart_init() so that we're not relying on u-boot to init
  the hardware (meaning uarts other than the console will work).

  Reword a comment block a bit.
</content>
</entry>
<entry>
<title>MFC 264203, 264204, 264206, 264218:</title>
<updated>2014-05-17T21:46:25Z</updated>
<author>
<name>Ian Lepore</name>
<email>ian@FreeBSD.org</email>
</author>
<published>2014-05-17T21:46:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=32b4c11b00ad5bc38b38d5e14097db63a68079e3'/>
<id>urn:sha1:32b4c11b00ad5bc38b38d5e14097db63a68079e3</id>
<content type='text'>
  Tell VM we now have ARM platforms with physically discontiguous memory.

  Define the full 1024M of ram on the imx51 and imx53 boards.

  Use a more professional uart device description.
</content>
</entry>
<entry>
<title>MFC: r260889, r260890, r260911:</title>
<updated>2014-03-01T04:16:54Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2014-03-01T04:16:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=90947d4664056ade1b1b95850e701dc2d0c54f85'/>
<id>urn:sha1:90947d4664056ade1b1b95850e701dc2d0c54f85</id>
<content type='text'>
	r260911 | imp | 2014-01-20 10:45:36 -0700 (Mon, 20 Jan 2014) | 5 lines

	Don't lock in the generic grab just to lock again in the specific grabs.

	r260890 | imp | 2014-01-19 12:39:13 -0700 (Sun, 19 Jan 2014) | 11 lines

	Introduce grab and ungrab upcalls. When the kernel desires to grab the
	console, it calls the grab functions. These functions should turn off
	the RX interrupts, and any others that interfere. This makes mountroot
	prompt work again. If there's more generalized need other than
	prompting, many of these routines should be expanded to do those new
	things.

	Reviewed by:    bde (with reservations)
</content>
</entry>
<entry>
<title>Fix low-level uart drivers that set their fifo sizes in the softc too late.</title>
<updated>2013-04-01T00:44:20Z</updated>
<author>
<name>Ian Lepore</name>
<email>ian@FreeBSD.org</email>
</author>
<published>2013-04-01T00:44:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4d7abca0576b034bbe0c4ac8d723ff15d36f4323'/>
<id>urn:sha1:4d7abca0576b034bbe0c4ac8d723ff15d36f4323</id>
<content type='text'>
uart(4) allocates send and receiver buffers in attach() before it calls
the low-level driver's attach routine.  Many low-level drivers set the
fifo sizes in their attach routine, which is too late.  Other drivers set
them in the probe() routine, so that they're available when uart(4)
allocates buffers.  This fixes the ones that were setting the values too
late by moving the code to probe().
</content>
</entry>
<entry>
<title>Integrate Efika MX project back to home.</title>
<updated>2013-03-20T15:39:27Z</updated>
<author>
<name>Aleksandr Rybalko</name>
<email>ray@FreeBSD.org</email>
</author>
<published>2013-03-20T15:39:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a2c472e741ff8682553464270bdef82b70635fdb'/>
<id>urn:sha1:a2c472e741ff8682553464270bdef82b70635fdb</id>
<content type='text'>
Sponsored by:	The FreeBSD Foundation
</content>
</entry>
</feed>
