<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/sys/dev/uart, branch release/5.3.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.3.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.3.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2004-09-24T22:50:57Z</updated>
<entry>
<title>MFC: 1.4</title>
<updated>2004-09-24T22:50:57Z</updated>
<author>
<name>Marius Strobl</name>
<email>marius@FreeBSD.org</email>
</author>
<published>2004-09-24T22:50:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=bd5f3ec4b96399bc91d5a094f8fc7219d3119d2f'/>
<id>urn:sha1:bd5f3ec4b96399bc91d5a094f8fc7219d3119d2f</id>
<content type='text'>
Don't call uart_bus_probe() for non-matching PnP-devices.

Approved by:	re (scottl)
</content>
</entry>
<entry>
<title>Fix a style(9) bug (variable definitions inside a nested scope) a patch</title>
<updated>2004-08-15T02:17:20Z</updated>
<author>
<name>Marius Strobl</name>
<email>marius@FreeBSD.org</email>
</author>
<published>2004-08-15T02:17:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=115e9ac6563a1c49c4edae5cd182d5eee09d7c83'/>
<id>urn:sha1:115e9ac6563a1c49c4edae5cd182d5eee09d7c83</id>
<content type='text'>
of mine introduced in revision 1.10.

Approved by:	marcel
Prodded by:	marcel
</content>
</entry>
<entry>
<title>- Introduce an uart_cpu_identify() which is implemented in uart_cpu_&lt;arch&gt;.c</title>
<updated>2004-08-14T23:54:27Z</updated>
<author>
<name>Marius Strobl</name>
<email>marius@FreeBSD.org</email>
</author>
<published>2004-08-14T23:54:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=efa79eb77e9583863d9f6e8c0c935ae90ca1c2b1'/>
<id>urn:sha1:efa79eb77e9583863d9f6e8c0c935ae90ca1c2b1</id>
<content type='text'>
  and that can be used as an identify function for all kinds of busses on a
  certain platform. Expect for sparc64 these are only stubs right now. [1]
- For sparc64, add code to its uart_cpu_identify() for registering the on-
  board ISA UARTs and their resources based on information obtained from
  Open Firmware.
  It would be better if this would be done in the OFW ISA code. However, due
  to the common FreeBSD ISA code and PNP-IDs not always being present in the
  properties of the ISA nodes there seems to be no good way to implement that.
  Therefore special casing UARTs as the sole really relevant ISA devices on
  sparc64 seemed reasonable. [2]

Approved by:	marcel
Discussed with:	marcel [1], tmm [2]
Tested by:	make universe
</content>
</entry>
<entry>
<title>- Introduce an ofw_bus kobj-interface for retrieving the OFW node and a</title>
<updated>2004-08-12T17:41:33Z</updated>
<author>
<name>Marius Strobl</name>
<email>marius@FreeBSD.org</email>
</author>
<published>2004-08-12T17:41:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=26280d88d76716790cf28f23fdb0bda56533e9b6'/>
<id>urn:sha1:26280d88d76716790cf28f23fdb0bda56533e9b6</id>
<content type='text'>
  subset ("compatible", "device_type", "model" and "name") of the standard
  properties in drivers for devices on Open Firmware supported busses. The
  standard properties "reg", "interrupts" und "address" are not covered by
  this interface because they are only of interest in the respective bridge
  code. There's a remaining standard property "status" which is unclear how
  to support properly but which also isn't used in FreeBSD at present.
  This ofw_bus kobj-interface allows to replace the various (ebus_get_node(),
  ofw_pci_get_node(), etc.) and partially inconsistent (central_get_type()
  vs. sbus_get_device_type(), etc.) existing IVAR ones with a common one.
  This in turn allows to simplify and remove code-duplication in drivers for
  devices that can hang off of more than one OFW supported bus.
- Convert the sparc64 Central, EBus, FHC, PCI and SBus bus drivers and the
  drivers for their children to use the ofw_bus kobj-interface. The IVAR-
  interfaces of the Central, EBus and FHC are entirely replaced by this. The
  PCI bus driver used its own kobj-interface and now also uses the ofw_bus
  one. The IVARs special to the SBus, e.g. for retrieving the burst size,
  remain.
  Beware: this causes an ABI-breakage for modules of drivers which used the
  IVAR-interfaces, i.e. esp(4), hme(4), isp(4) and uart(4), which need to be
  recompiled.
  The style-inconsistencies introduced in some of the bus drivers will be
  fixed by tmm@ in a generic clean-up of the respective drivers later (he
  requested to add the changes in the "new" style).
- Convert the powerpc MacIO bus driver and the drivers for its children to
  use the ofw_bus kobj-interface. This invloves removing the IVARs related
  to the "reg" property which were unused and a leftover from the NetBSD
  origini of the code. There's no ABI-breakage caused by this because none
  of these driver are currently built as modules.
  There are other powerpc bus drivers which can be converted to the ofw_bus
  kobj-interface, e.g. the PCI bus driver, which should be done together
  with converting powerpc to use the OFW PCI code from sparc64.
- Make the SBus and FHC front-end of zs(4) and the sparc64 eeprom(4) take
  advantage of the ofw_bus kobj-interface and simplify them a bit.

Reviewed by:	grehan, tmm
Approved by:	re (scottl)
Discussed with:	tmm
Tested with:	Sun AX1105, AXe, Ultra 2, Ultra 60; PPC cross-build on i386
</content>
</entry>
<entry>
<title>Do not use hardware flow control for the moment. There are some issues</title>
<updated>2004-08-06T15:51:31Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2004-08-06T15:51:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=dc70e792a6db924c8b242508ba056d3a104e3016'/>
<id>urn:sha1:dc70e792a6db924c8b242508ba056d3a104e3016</id>
<content type='text'>
with it that need to be understood better before they can be resolved.
This takes time and time is already in short supply.

Reported &amp; tested by: glebius@
</content>
</entry>
<entry>
<title>When sizing the FIFO, don't count all the way up to 1030 if any FIFO</title>
<updated>2004-07-26T03:54:40Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2004-07-26T03:54:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d882cf921f4d856f8b5142b864f55a5721bf06a0'/>
<id>urn:sha1:d882cf921f4d856f8b5142b864f55a5721bf06a0</id>
<content type='text'>
size larger than 128 is considered an incompatible size. Stop counting
when we reach 130 in the loop.
</content>
</entry>
<entry>
<title>Preparation commit for the tty cleanups that will follow in the near</title>
<updated>2004-07-15T20:47:41Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2004-07-15T20:47:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=672c05d49c9565187ba43fd37c632fd5960c04b5'/>
<id>urn:sha1:672c05d49c9565187ba43fd37c632fd5960c04b5</id>
<content type='text'>
future:

rename ttyopen() -&gt; tty_open() and ttyclose() -&gt; tty_close().

We need the ttyopen() and ttyclose() for the new generic cdevsw
functions for tty devices in order to have consistent naming.
</content>
</entry>
<entry>
<title>Update for the KDB framework:</title>
<updated>2004-07-10T21:16:01Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2004-07-10T21:16:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=591bc192b33eb83f939eb404f57596a54e4d3c41'/>
<id>urn:sha1:591bc192b33eb83f939eb404f57596a54e4d3c41</id>
<content type='text'>
o  Call kdb_enter() instead of breakpoint().
o  Call kdb_alt_break() instead of db_alt_break().
o  Make debugging code conditional upon KDB instead of DDB.
</content>
</entry>
<entry>
<title>Add support for uart(4) being a debug port for the GDB backend.</title>
<updated>2004-07-10T18:08:38Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2004-07-10T18:08:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=89438367ae061d27f203a7b061bae03b71e28ebc'/>
<id>urn:sha1:89438367ae061d27f203a7b061bae03b71e28ebc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Define the tty methods as typedefs.</title>
<updated>2004-06-30T21:38:08Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2004-06-30T21:38:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=b4994e318ab2de6585ba5e879617df94d98de724'/>
<id>urn:sha1:b4994e318ab2de6585ba5e879617df94d98de724</id>
<content type='text'>
Change the return type for t_break to void.

Add t_ioctl (more about this later).
</content>
</entry>
</feed>
