Home | History | Annotate | only in /src/sys/arch/hpcsh/dev/hd64465
History log of /src/sys/arch/hpcsh/dev/hd64465
RevisionDateAuthorComments
 1.19 07-Aug-2021  thorpej Merge thorpej-cfargs2.
 1.18 24-Apr-2021  thorpej branches: 1.18.8;
Merge thorpej-cfargs branch:

Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.

Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
actually needed.
- Don't be explicit about what interface attribute is attaching if
the device only has one. (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
situations, making is visibly easier to see when indirect config is
in play, and allowing for future change in semantics. (As of now,
this is just a wrapper around config_match(), but that is an
implementation detail.)

Remove unnecessary or redundant interface attributes where they're not
needed.

There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)

...and a sentinel value CFARG_EOL.

Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.

Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance. This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).
 1.17 27-Oct-2012  chs branches: 1.17.52;
split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.
 1.16 12-Feb-2012  matt branches: 1.16.6;
Change old-style function defintions to C89 prototypes.

Approved by releng.
 1.15 19-Jul-2011  dyoung branches: 1.15.2; 1.15.6;
Change <machine/bus.h> to <sys/bus.h> throughout.

Split bus.h -> bus_{defs,funcs}.h.

Mark hpcsh/bus.h obsolete.
 1.14 06-Jun-2011  matt CFATTACH_DECL(..., sizeof(struct device), -> CFATTACH_DECL_NEW(..., 0
struct device * -> device_t
struct cfdata * -> cfdata_t
use __arraycount when appropriate
 1.13 28-Apr-2008  martin branches: 1.13.22; 1.13.32;
Remove clause 3 and 4 from TNF licenses
 1.12 04-Mar-2006  uwe branches: 1.12.68; 1.12.70; 1.12.72;
s/u_intN_t/uintN_t/
 1.11 11-Dec-2005  christos branches: 1.11.4; 1.11.6;
merge ktrace-lwp.
 1.10 15-Jul-2003  lukem branches: 1.10.16;
__KERNEL_RCSID()
 1.9 01-Jan-2003  thorpej branches: 1.9.2;
Use aprint_normal() for cfprint routines.
 1.8 21-Oct-2002  uch make this compile again.
 1.7 02-Oct-2002  thorpej Add trailing ; to CFATTACH_DECL
 1.6 01-Oct-2002  thorpej Use CFATTACH_DECL().
 1.5 27-Sep-2002  thorpej Declare all cfattach structures const.
 1.4 27-Sep-2002  thorpej Rather than referencing the cfdriver directly in the cfdata entries,
instead use a string naming the driver. The cfdriver is then looked
up in a list which is built at run-time.
 1.3 28-Mar-2002  uch branches: 1.3.6;
rework HD64461, HD64465 interrupt handling.
 1.2 24-Mar-2002  uch adapted to new interrupt code and shb changes.
 1.1 11-Feb-2002  uch branches: 1.1.2; 1.1.8;
HD64465 interrupt, uart, pcmcia modules
 1.1.8.4 10-Oct-2002  jdolecek sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
 1.1.8.3 23-Jun-2002  jdolecek catch up with -current on kqueue branch
 1.1.8.2 16-Mar-2002  jdolecek Catch up with -current.
 1.1.8.1 11-Feb-2002  jdolecek file hd64465.c was added on branch kqueue on 2002-03-16 15:58:06 +0000
 1.1.2.2 01-Apr-2002  nathanw Catch up to -current.
(CVS: It's not just a program. It's an adventure!)
 1.1.2.1 28-Feb-2002  nathanw Catch up to -current.
 1.3.6.4 03-Jan-2003  thorpej Sync with HEAD.
 1.3.6.3 11-Nov-2002  nathanw Catch up to -current
 1.3.6.2 18-Oct-2002  nathanw Catch up to -current.
 1.3.6.1 28-Mar-2002  nathanw file hd64465.c was added on branch nathanw_sa on 2002-10-18 02:37:24 +0000
 1.9.2.3 21-Sep-2004  skrll Fix the sync with head I botched.
 1.9.2.2 18-Sep-2004  skrll Sync with HEAD.
 1.9.2.1 03-Aug-2004  skrll Sync with HEAD
 1.10.16.1 21-Jun-2006  yamt sync with head.
 1.11.6.1 22-Apr-2006  simonb Sync with head.
 1.11.4.1 09-Sep-2006  rpaulo sync with head
 1.12.72.1 16-May-2008  yamt sync with head.
 1.12.70.1 18-May-2008  yamt sync with head.
 1.12.68.1 02-Jun-2008  mjf Sync with HEAD.
 1.13.32.1 23-Jun-2011  cherry Catchup with rmind-uvmplock merge.
 1.13.22.1 12-Jun-2011  rmind sync with head
 1.15.6.1 18-Feb-2012  mrg merge to -current.
 1.15.2.2 30-Oct-2012  yamt sync with head
 1.15.2.1 17-Apr-2012  yamt sync with head
 1.16.6.1 20-Nov-2012  tls Resync to 2012-11-19 00:00:00 UTC
 1.17.52.1 21-Mar-2021  thorpej Give config_found() the same variadic arguments treatment as
config_search(). This commit only adds the CFARG_EOL sentinel
to the existing config_found() calls. Conversion of config_found_sm_loc()
and config_found_ia() call sites will be in subsequent commits.
 1.18.8.1 04-Aug-2021  thorpej Adapt to CFARGS().
 1.2 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.1 11-Feb-2002  uch branches: 1.1.2; 1.1.8; 1.1.16; 1.1.124; 1.1.126; 1.1.128;
HD64465 interrupt, uart, pcmcia modules
 1.1.128.1 16-May-2008  yamt sync with head.
 1.1.126.1 18-May-2008  yamt sync with head.
 1.1.124.1 02-Jun-2008  mjf Sync with HEAD.
 1.1.16.2 11-Feb-2002  uch HD64465 interrupt, uart, pcmcia modules
 1.1.16.1 11-Feb-2002  uch file hd64465intcreg.h was added on branch nathanw_sa on 2002-02-11 17:27:16 +0000
 1.1.8.2 16-Mar-2002  jdolecek Catch up with -current.
 1.1.8.1 11-Feb-2002  jdolecek file hd64465intcreg.h was added on branch kqueue on 2002-03-16 15:58:06 +0000
 1.1.2.1 28-Feb-2002  nathanw Catch up to -current.
 1.38 06-Aug-2025  andvar s/attibute/attribute/ and s/previosly/previously/ in comments.
 1.37 02-Jun-2024  andvar fix various typos in word `interrupt', mainly in comments.
 1.36 05-Apr-2023  andvar remove some double ee typos in comments.
 1.35 07-Aug-2021  thorpej Merge thorpej-cfargs2.
 1.34 24-Apr-2021  thorpej branches: 1.34.8;
Merge thorpej-cfargs branch:

Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.

Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
actually needed.
- Don't be explicit about what interface attribute is attaching if
the device only has one. (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
situations, making is visibly easier to see when indirect config is
in play, and allowing for future change in semantics. (As of now,
this is just a wrapper around config_match(), but that is an
implementation detail.)

Remove unnecessary or redundant interface attributes where they're not
needed.

There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)

...and a sentinel value CFARG_EOL.

Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.

Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance. This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).
 1.33 21-Nov-2020  thorpej branches: 1.33.2;
malloc(9) -> kmem(9)
 1.32 29-Oct-2012  chs branches: 1.32.50;
and finally, initialize sc_dev now that I added it back.
 1.31 29-Oct-2012  chs third try is the charm: really make this build again.
 1.30 29-Oct-2012  chs fix device/softc split errors.
 1.29 27-Oct-2012  chs split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.
 1.28 26-Jul-2011  dyoung branches: 1.28.2; 1.28.12;
Don't set the iobase and iosize members of pcmciabus_attach_args because
they're not used in any meaningful way.
 1.27 19-Jul-2011  dyoung Change <machine/bus.h> to <sys/bus.h> throughout.

Split bus.h -> bus_{defs,funcs}.h.

Mark hpcsh/bus.h obsolete.
 1.26 07-Nov-2009  cegger Add a flags argument to pmap_kenter_pa(9).
Patch showed on tech-kern@ http://mail-index.netbsd.org/tech-kern/2009/11/04/msg006434.html
No objections.
 1.25 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.24 15-Dec-2007  perry branches: 1.24.6; 1.24.8; 1.24.10;
__FUNCTION__ -> __func__
 1.23 17-Oct-2007  garbled branches: 1.23.4; 1.23.8;
Merge the ppcoea-renovation branch to HEAD.

This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree. Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches. The work
for this branch was done by a variety of people, too long to list here.

TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.

NOTES:
pmppc was removed as an arch, and moved to a evbppc target.
 1.22 17-Jul-2007  he branches: 1.22.10;
Adapt to the new signature of kthread_create(), and the removal
of kthread_create1().
 1.21 04-Mar-2006  uwe branches: 1.21.24; 1.21.32;
s/u_intN_t/uintN_t/
 1.20 11-Dec-2005  christos branches: 1.20.4; 1.20.6;
merge ktrace-lwp.
 1.19 26-Aug-2005  drochner s/locdesc_t/int/g
 1.18 28-Jun-2005  drochner branches: 1.18.2;
convert remaining autoconf bus "submatch" functions to use the new
signature (passing locators), and remove some which obviously don't
serve any purpose
(untested, sorry)
 1.17 01-Apr-2005  yamt merge yamt-km branch.
- don't use managed mappings/backing objects for wired memory allocations.
save some resources like pv_entry. also fix (most of) PR/27030.
- simplify kernel memory management API.
- simplify pmap bootstrap of some ports.
- some related cleanups.
 1.16 11-Aug-2004  mycroft branches: 1.16.4; 1.16.6;
Forget to reset to memory mode on power up.
The hd64465 looks a bit incomplete, but "not my problem".
 1.15 11-Aug-2004  mycroft Attempt to fix these up, but I have no way to test them.
 1.14 03-Nov-2003  jdolecek vaddr_t is not a pointer
 1.13 15-Jul-2003  lukem __KERNEL_RCSID()
 1.12 01-Apr-2003  thorpej branches: 1.12.2;
Use PAGE_SIZE rather than NBPG.
 1.11 01-Jan-2003  thorpej Use aprint_normal() for cfprint routines.
 1.10 02-Oct-2002  thorpej Add trailing ; to CFATTACH_DECL
 1.9 01-Oct-2002  thorpej Use CFATTACH_DECL().
 1.8 27-Sep-2002  thorpej Declare all cfattach structures const.
 1.7 27-Sep-2002  thorpej Introduce a new routine, config_match(), which invokes the
cfattach->ca_match function in behalf of the caller. Use it
rather than invoking cfattach->ca_match directly.
 1.6 01-Jun-2002  lukem branches: 1.6.2;
SIMPLEQ rototill:
- implement SIMPLEQ_REMOVE(head, elm, type, field). whilst it's O(n),
this mirrors the functionality of SLIST_REMOVE() (the other
singly-linked list type) and FreeBSD's STAILQ_REMOVE()
- remove the unnecessary elm arg from SIMPLEQ_REMOVE_HEAD().
this mirrors the functionality of SLIST_REMOVE_HEAD() (the other
singly-linked list type) and FreeBSD's STAILQ_REMOVE_HEAD()
- remove notes about SIMPLEQ not supporting arbitrary element removal
- use SIMPLEQ_FOREACH() instead of home-grown for loops
- use SIMPLEQ_EMPTY() appropriately
- use SIMPLEQ_*() instead of accessing sqh_first,sqh_last,sqe_next directly
- reorder manual page; be consistent about how the types are listed
- other minor cleanups
 1.5 09-May-2002  uch branches: 1.5.2;
adapt to new pmap code.
 1.4 28-Mar-2002  uch rework HD64461, HD64465 interrupt handling.
 1.3 28-Feb-2002  uch branches: 1.3.2; 1.3.8;
Cleanup register definition
 1.2 17-Feb-2002  uch SH3/SH4 common kernel support.
 1.1 11-Feb-2002  uch HD64465 interrupt, uart, pcmcia modules
 1.3.8.4 10-Oct-2002  jdolecek sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
 1.3.8.3 23-Jun-2002  jdolecek catch up with -current on kqueue branch
 1.3.8.2 16-Mar-2002  jdolecek Catch up with -current.
 1.3.8.1 28-Feb-2002  jdolecek file hd64465pcmcia.c was added on branch kqueue on 2002-03-16 15:58:07 +0000
 1.3.2.3 20-Jun-2002  nathanw Catch up to -current.
 1.3.2.2 01-Apr-2002  nathanw Catch up to -current.
(CVS: It's not just a program. It's an adventure!)
 1.3.2.1 28-Feb-2002  nathanw Catch up to -current.
 1.5.2.1 14-Jul-2002  gehenna catch up with -current.
 1.6.2.3 03-Jan-2003  thorpej Sync with HEAD.
 1.6.2.2 18-Oct-2002  nathanw Catch up to -current.
 1.6.2.1 01-Jun-2002  nathanw file hd64465pcmcia.c was added on branch nathanw_sa on 2002-10-18 02:37:24 +0000
 1.12.2.6 10-Nov-2005  skrll Sync with HEAD. Here we go again...
 1.12.2.5 01-Apr-2005  skrll Sync with HEAD.
 1.12.2.4 21-Sep-2004  skrll Fix the sync with head I botched.
 1.12.2.3 18-Sep-2004  skrll Sync with HEAD.
 1.12.2.2 12-Aug-2004  skrll Sync with HEAD.
 1.12.2.1 03-Aug-2004  skrll Sync with HEAD
 1.16.6.2 13-Feb-2005  yamt fix a typo in the previous. (bogus argument to uvm_km_free)
 1.16.6.1 13-Feb-2005  yamt use new apis.
 1.16.4.1 29-Apr-2005  kent sync with -current
 1.18.2.3 21-Jan-2008  yamt sync with head
 1.18.2.2 03-Sep-2007  yamt sync with head.
 1.18.2.1 21-Jun-2006  yamt sync with head.
 1.20.6.1 22-Apr-2006  simonb Sync with head.
 1.20.4.1 09-Sep-2006  rpaulo sync with head
 1.21.32.1 03-Oct-2007  garbled Sync with HEAD
 1.21.24.1 20-Aug-2007  ad Sync with HEAD.
 1.22.10.2 09-Jan-2008  matt sync with HEAD
 1.22.10.1 06-Nov-2007  matt sync with HEAD
 1.23.8.1 02-Jan-2008  bouyer Sync with HEAD
 1.23.4.1 26-Dec-2007  ad Sync with head.
 1.24.10.2 11-Mar-2010  yamt sync with head
 1.24.10.1 16-May-2008  yamt sync with head.
 1.24.8.1 18-May-2008  yamt sync with head.
 1.24.6.1 02-Jun-2008  mjf Sync with HEAD.
 1.28.12.1 20-Nov-2012  tls Resync to 2012-11-19 00:00:00 UTC
 1.28.2.1 30-Oct-2012  yamt sync with head
 1.32.50.1 14-Dec-2020  thorpej Sync w/ HEAD.
 1.33.2.2 22-Mar-2021  thorpej Audit CFARG_IATTR in config_found() calls, and remove it in situations
where the interface attribute is not ambiguous.
 1.33.2.1 22-Mar-2021  thorpej Mechanical conversion of config_found_sm_loc() -> config_found().
CFARG_IATTR usage needs to be audited.
 1.34.8.1 04-Aug-2021  thorpej Adapt to CFARGS().
 1.3 27-Dec-2021  andvar fix few typos in comments.
 1.2 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.1 11-Feb-2002  uch branches: 1.1.2; 1.1.8; 1.1.16; 1.1.124; 1.1.126; 1.1.128;
HD64465 interrupt, uart, pcmcia modules
 1.1.128.1 16-May-2008  yamt sync with head.
 1.1.126.1 18-May-2008  yamt sync with head.
 1.1.124.1 02-Jun-2008  mjf Sync with HEAD.
 1.1.16.2 11-Feb-2002  uch HD64465 interrupt, uart, pcmcia modules
 1.1.16.1 11-Feb-2002  uch file hd64465reg.h was added on branch nathanw_sa on 2002-02-11 17:27:17 +0000
 1.1.8.2 16-Mar-2002  jdolecek Catch up with -current.
 1.1.8.1 11-Feb-2002  jdolecek file hd64465reg.h was added on branch kqueue on 2002-03-16 15:58:07 +0000
 1.1.2.1 28-Feb-2002  nathanw Catch up to -current.
 1.21 20-Dec-2023  thorpej Remove unnecessary <sys/malloc.h>.
 1.20 08-Dec-2018  thorpej Clean up initialization of com_regs structure, in preparation for
some additional changers.
 1.19 12-Feb-2012  matt branches: 1.19.46; 1.19.48;
Change old-style function defintions to C89 prototypes.

Approved by releng.
 1.18 19-Jul-2011  dyoung branches: 1.18.2; 1.18.6;
Change <machine/bus.h> to <sys/bus.h> throughout.

Split bus.h -> bus_{defs,funcs}.h.

Mark hpcsh/bus.h obsolete.
 1.17 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.16 14-Mar-2008  cube branches: 1.16.2; 1.16.4;
Split device_t and softc for all com(4) devices (well, everything that
uses a com_softc backend). Use proper types and ansify where appropriate.
 1.15 15-Dec-2007  perry branches: 1.15.2; 1.15.6;
__FUNCTION__ -> __func__
 1.14 13-Jul-2006  gdamore branches: 1.14.34; 1.14.44; 1.14.48;
Add an option COM_REGMAP to allow com(4) to use an array of register indices.
This allows us to convert aucom to just another com attachment, and cleanup
some code in the com_arbus.c.

Additionally, we use a common com_cleanup routine rather than having a
zillion copies of it in the attachment points.

This has been tested on a number architectures, and it has been shown to get
close to comparable performance when COM_REGMAP is defined, and comparable
when it is not defined.

Approved by core@. Fixes PR port-evbmips/32362.
 1.13 04-Mar-2006  uwe branches: 1.13.2; 1.13.10;
s/u_intN_t/uintN_t/
 1.12 24-Dec-2005  perry branches: 1.12.4; 1.12.6;
__asm__ -> __asm
__const__ -> const
__inline__ -> inline
__volatile__ -> volatile
 1.11 11-Dec-2005  christos merge ktrace-lwp.
 1.10 15-Jul-2003  lukem branches: 1.10.16;
__KERNEL_RCSID()
 1.9 14-Jun-2003  thorpej branches: 1.9.2;
Also pass a type argument to comcnattach() and com_kgdb_attach().
comspeed() (and thus cominit()) may need this information.
 1.8 02-Oct-2002  thorpej Add trailing ; to CFATTACH_DECL
 1.7 01-Oct-2002  thorpej Use CFATTACH_DECL().
 1.6 27-Sep-2002  thorpej Declare all cfattach structures const.
 1.5 06-Sep-2002  gehenna Merge the gehenna-devsw branch into the trunk.

This merge changes the device switch tables from static array to
dynamically generated by config(8).

- All device switches is defined as a constant structure in device drivers.

- The new grammer ``device-major'' is introduced to ``files''.

device-major <prefix> char <num> [block <num>] [<rules>]

- All device major numbers must be listed up in port dependent majors.<arch>
by using this grammer.

- Added the new naming convention.
The name of the device switch must be <prefix>_[bc]devsw for auto-generation
of device switch tables.

- The backward compatibility of loading block/character device
switch by LKM framework is broken. This is necessary to convert
from block/character device major to device name in runtime and vice versa.

- The restriction to assign device major by LKM is completely removed.
We don't need to reserve LKM entries for dynamic loading of device switch.

- In compile time, device major numbers list is packed into the kernel and
the LKM framework will refer it to assign device major number dynamically.
 1.4 28-Mar-2002  uch branches: 1.4.2; 1.4.6;
rework HD64461, HD64465 interrupt handling.
 1.3 03-Mar-2002  uch branches: 1.3.4;
don't initialize twice
 1.2 02-Mar-2002  uch Initial support for KGDB on the sh3.
 1.1 11-Feb-2002  uch branches: 1.1.2;
HD64465 interrupt, uart, pcmcia modules
 1.1.2.2 01-Apr-2002  nathanw Catch up to -current.
(CVS: It's not just a program. It's an adventure!)
 1.1.2.1 28-Feb-2002  nathanw Catch up to -current.
 1.3.4.4 10-Oct-2002  jdolecek sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
 1.3.4.3 23-Jun-2002  jdolecek catch up with -current on kqueue branch
 1.3.4.2 16-Mar-2002  jdolecek Catch up with -current.
 1.3.4.1 03-Mar-2002  jdolecek file hd64465uart.c was added on branch kqueue on 2002-03-16 15:58:07 +0000
 1.4.6.3 18-Oct-2002  nathanw Catch up to -current.
 1.4.6.2 17-Sep-2002  nathanw Catch up to -current.
 1.4.6.1 28-Mar-2002  nathanw file hd64465uart.c was added on branch nathanw_sa on 2002-09-17 21:14:53 +0000
 1.4.2.2 06-Jun-2002  gehenna remove cdev_decl.
 1.4.2.1 19-May-2002  gehenna Replace the access to devsw table and the hard-coded majors with devsw API.
 1.9.2.3 21-Sep-2004  skrll Fix the sync with head I botched.
 1.9.2.2 18-Sep-2004  skrll Sync with HEAD.
 1.9.2.1 03-Aug-2004  skrll Sync with HEAD
 1.10.16.4 17-Mar-2008  yamt sync with head.
 1.10.16.3 21-Jan-2008  yamt sync with head
 1.10.16.2 30-Dec-2006  yamt sync with head.
 1.10.16.1 21-Jun-2006  yamt sync with head.
 1.12.6.1 22-Apr-2006  simonb Sync with head.
 1.12.4.1 09-Sep-2006  rpaulo sync with head
 1.13.10.1 16-Jun-2006  gdamore Conver hpcsh com attachments to new com(4) framework.
 1.13.2.1 11-Aug-2006  yamt sync with head
 1.14.48.1 02-Jan-2008  bouyer Sync with HEAD
 1.14.44.1 26-Dec-2007  ad Sync with head.
 1.14.34.2 23-Mar-2008  matt sync with HEAD
 1.14.34.1 09-Jan-2008  matt sync with HEAD
 1.15.6.2 02-Jun-2008  mjf Sync with HEAD.
 1.15.6.1 03-Apr-2008  mjf Sync with HEAD.
 1.15.2.1 24-Mar-2008  keiichi sync with head.
 1.16.4.1 16-May-2008  yamt sync with head.
 1.16.2.1 18-May-2008  yamt sync with head.
 1.18.6.1 18-Feb-2012  mrg merge to -current.
 1.18.2.1 17-Apr-2012  yamt sync with head
 1.19.48.1 10-Jun-2019  christos Sync with HEAD
 1.19.46.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.2 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.1 04-Feb-2002  uch branches: 1.1.2; 1.1.4; 1.1.16; 1.1.124; 1.1.126; 1.1.128;
HITACHI HD64465 UART module register define.
 1.1.128.1 16-May-2008  yamt sync with head.
 1.1.126.1 18-May-2008  yamt sync with head.
 1.1.124.1 02-Jun-2008  mjf Sync with HEAD.
 1.1.16.2 04-Feb-2002  uch HITACHI HD64465 UART module register define.
 1.1.16.1 04-Feb-2002  uch file hd64465uartreg.h was added on branch nathanw_sa on 2002-02-04 17:23:45 +0000
 1.1.4.1 28-Feb-2002  nathanw Catch up to -current.
 1.1.2.2 11-Feb-2002  jdolecek Sync w/ -current.
 1.1.2.1 04-Feb-2002  jdolecek file hd64465uartreg.h was added on branch kqueue on 2002-02-11 20:08:17 +0000
 1.3 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.2 02-Mar-2002  uch branches: 1.2.4; 1.2.12; 1.2.120; 1.2.122; 1.2.124;
Initial support for KGDB on the sh3.
 1.1 11-Feb-2002  uch branches: 1.1.2;
HD64465 interrupt, uart, pcmcia modules
 1.1.2.2 01-Apr-2002  nathanw Catch up to -current.
(CVS: It's not just a program. It's an adventure!)
 1.1.2.1 28-Feb-2002  nathanw Catch up to -current.
 1.2.124.1 16-May-2008  yamt sync with head.
 1.2.122.1 18-May-2008  yamt sync with head.
 1.2.120.1 02-Jun-2008  mjf Sync with HEAD.
 1.2.12.2 02-Mar-2002  uch Initial support for KGDB on the sh3.
 1.2.12.1 02-Mar-2002  uch file hd64465uartvar.h was added on branch nathanw_sa on 2002-03-02 22:26:27 +0000
 1.2.4.2 16-Mar-2002  jdolecek Catch up with -current.
 1.2.4.1 02-Mar-2002  jdolecek file hd64465uartvar.h was added on branch kqueue on 2002-03-16 15:58:07 +0000
 1.4 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.3 04-Mar-2006  uwe branches: 1.3.68; 1.3.70; 1.3.72;
s/u_intN_t/uintN_t/
 1.2 28-Mar-2002  uch branches: 1.2.6; 1.2.28; 1.2.42; 1.2.44;
rework HD64461, HD64465 interrupt handling.
 1.1 11-Feb-2002  uch branches: 1.1.2; 1.1.8;
HD64465 interrupt, uart, pcmcia modules
 1.1.8.3 23-Jun-2002  jdolecek catch up with -current on kqueue branch
 1.1.8.2 16-Mar-2002  jdolecek Catch up with -current.
 1.1.8.1 11-Feb-2002  jdolecek file hd64465var.h was added on branch kqueue on 2002-03-16 15:58:07 +0000
 1.1.2.2 01-Apr-2002  nathanw Catch up to -current.
(CVS: It's not just a program. It's an adventure!)
 1.1.2.1 28-Feb-2002  nathanw Catch up to -current.
 1.2.44.1 22-Apr-2006  simonb Sync with head.
 1.2.42.1 09-Sep-2006  rpaulo sync with head
 1.2.28.1 21-Jun-2006  yamt sync with head.
 1.2.6.2 28-Mar-2002  uch rework HD64461, HD64465 interrupt handling.
 1.2.6.1 28-Mar-2002  uch file hd64465var.h was added on branch nathanw_sa on 2002-03-28 15:27:03 +0000
 1.3.72.1 16-May-2008  yamt sync with head.
 1.3.70.1 18-May-2008  yamt sync with head.
 1.3.68.1 02-Jun-2008  mjf Sync with HEAD.

RSS XML Feed