PR 527/bsps
PR 822/bsps
* mpc8xx/clock/clock.c: Currently the MBX8xx BSP does not boot,
because some logical errors are in the startup code. Additionally,
the mpc8xx shared clock driver does not support the clocking scheme
of some of the board variants, which are clocked from a 32768Hz (!)
external crystal.
PR 822/bsps
* console/console.c, startup/bspstart.c, startup/imbx8xx.c,
startup/mmutlbtab.c, startup/start.S, vectors/vectors_init.c:
Currently the MBX8xx BSP does not boot, because some logical errors
are in the startup code. Additionally, the mpc8xx shared clock driver
does not support the clocking scheme of some of the board variants,
which are clocked from a 32768Hz (!) external crystal.
* timer/timer.c: Enhance to use either interupt-based timer
functions on older CPUs or to use TSC-based timer functions on
more recent (Pentium and above) CPUs. The decision is made in
Timer_initialize function when it is called for the first time
based on a result obtained from cpuid instruction during the BSP
initialization phase. During the first call, there are also late
bindings to the implementation functions initialized to
appropriate values.
PR 577/bsps
* console.c: The console_close() method currently calls StopRemoteTx()
on all invocations. It should should be ok for last close only but
not for any others. If you open a port multiple times, you only want
to call StopRemoteTx() only as part of the last close.
PR 816/bsps
* mpc8xx/include/mpc8xx.h: The struct which describes SCC Ethernet mode
parameters (m8xxSCCENparms_t) does not match the hardware: members
taddr_h and taddr_l are transposed. When loading new multicast group
addresses into the hash table, the wrong hash bit is set.
PR 813/networking
* ne2000/ne2000.c: The ne2000 driver on pc386 has been broken since a
parameter was added to irq handlers (2005-04-18). Before these
changes the argument to the interrupt handler was the interrupt
number, now the argument is handle, but the ne2000 driver needs the
interrupt number. The fix is to set the handle to the interrupt
number.
* Makefile.am: Remove lcd.rel, added console/uart.c,
removed conio stuffs.
* console/conio.c, console/console.c, console/defaultfont.c,
include/conio.h : files removed.
* console/uart.c: New file.
* include/bsp.h: lcd.c prototypes removed.
* startup/bspstart.c: bsp_reset() cause gp32 to reset to bios,
added a bsp_idle_task which put s3c2400 in a "wait for IRQ" state.