changelog
来自「eCos操作系统源码」· 代码 · 共 1,286 行 · 第 1/3 页
TXT
1,286 行
2004-05-10 Robert Chenault <robertchenault@yahoo.com> * src/quicc_smc_serial.h: Added two casts of (int) on calculations involving CYGHWR_HAL_POWERPC_BOARD_SPEED.2004-01-24 Philip Soeberg <ecos@soeberg.net> * src/quicc_smc_serial.c(quicc_sxx_serial_init): SCC3 support for MPC8XX_823. 2003-10-13 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.c: Add some I/O barriers to make sure that operations happen in the correct order. Fixes BUG #903912003-10-08 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.c: Fix compile error for Adder-II (852T)2003-09-08 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.h: Fix baud rate clock setup - was off by 1. Reported by Tord Andersson <Tord.Andersson@combitechsystems.com>2003-03-31 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.c (quicc_sxx_serial_init): Handle SCC3 on various processors (signal routing differs).2003-03-28 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.c: Change how buffers are allocated & aligned to a cache line - previous attempt wasted a huge amount of space.2003-03-23 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.h: Move common definitions to common include file (in HAL). * src/quicc_smc_serial.c: * cdl/ser_quicc_smc.cdl: Remove options for baud rate generator assignment - use more generic [automatic] support.2003-03-17 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.h: * src/quicc_smc_serial.c: * cdl/ser_quicc_smc.cdl: Add support for SCC1/SCC2/SCC3. Inspired by Paul Randall <prandall@delta-info.com>2003-03-05 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc_serial.c: Use common routines to manage CPM/DPRAM pointers - much nicer in a multi-driver environment.2003-02-24 Jonathan Larmour <jifl@eCosCentric.com> * cdl/ser_quicc_smc.cdl: Remove irrelevant doc link.2002-12-10 Gary Thomas <gthomas@ecoscentric.com> * cdl/ser_quicc_smc.cdl: Only enable devices which exist - as described by the HAL/CDL interfaces.2001-11-30 Jonathan Larmour <jlarmour@redhat.com>2001-11-29 Christoph Csebits <christoph.csebits@frequentis.com> * src/quicc_smc_serial.c: aligning buffer to cache lines, flushing buffer in cache before flushing the device.2001-09-10 Jonathan Larmour <jlarmour@redhat.com> * cdl/ser_quicc_smc.cdl: Fix 234000->230400 typo.2000-12-22 Bj鰎n Stenberg <bjorn@haxx.se> * src/quicc_smc_serial.c (quicc_smc_serial_init_info): Set quicc going only after most of the other initialization is complete - otherwise initializing too early causes some of the parameters not to be initialized properly.2000-12-13 Daniel Lind <daniel.lind@sth.frontec.se> * src/quicc_smc_serial.c (quicc_smc_serial_flush): Don't mark a buffer ready unless it has been fully serviced - in particular, the interrupt bit must be clear. [2000-12-13] committed by Gary Thomas <gthomas@redhat.com>2000-12-06 Jonathan Larmour <jlarmour@redhat.com> * src/quicc_smc_serial.c: Remove unread tx_enabled variable from quicc_smc_serial_info Ensure quicc serial interrupt is unmasked in general so that rx works! (quicc_smc_serial_start_xmit): Protect better from DSR interruption2000-10-24 Jonathan Larmour <jlarmour@redhat.com> * src/quicc_smc_serial.c (quicc_smc_serial_ISR): Return with CYG_ISR_HANDLED (reported by Daniel Lind)2000-08-01 Jonathan Larmour <jlarmour@redhat.co.uk> * src/quicc_smc_serial.c (quicc_smc_serial_set_config): Now use keys to make more flexible.2000-06-22 Hugo Tyson <hmt@cygnus.co.uk> * cdl/<yournamehere>.cdl: Remove the comment on the empty include_files directive; the tools now support this correctly. This keeps internal include files internal.2000-04-11 Hugo Tyson <hmt@cygnus.co.uk> * cdl/ser_quicc_smc.cdl: Change the parent from CYGPKG_IO_SERIAL (which is enabled most of the time) to CYGPKG_IO_SERIAL_DEVICES (which is not...) thus allowing convenient control independent of platform. Also enable all individual devices by default, now, so that they can be enabled simply by enabling the above new parent.2000-04-07 Hugo Tyson <hmt@cygnus.co.uk> * ecos.db: Re-organize device packages. This is a massive change involving deleting all the sources for serial and ethernet drivers from where they used to live in packages/io/serial/current/src/ARCH/PLATFORM.[ch] packages/net/drivers/eth/PLATFORM/current/src/... and reinstating them in packages/devs/serial/ARCH/PLATFORM/current/src/... packages/devs/eth/ARCH/PLATFORM/current/src/... All these new packages are properly defined in ecos.db, and are all of type "hardware" so that a "target" can grab them. This directory layout is descriptive of the devices we have right now, arch and platform are separate levels just to make it easier to navigate in the filesystem and similar to the HAL structure in the filesystem. It is *not* prescriptive of future work; for example, the mythical common highly-portable 16550 serial driver which works on many targets would be called "devs/serial/s16550/current", or a serial device for a particular board (cogent springs to mind) that can work with different CPUs fitted is "devs/serial/cogent/current". Changelogs have been preserved and replicated over all the new packages, so that no history is lost. The contents of individual source files are unchanged; they build in just the same emvironment except for a very few cases where the config file name changed in this movement. Targets in ecos.db have been redefined to bring in all relevant hardware packages including net and serial drivers (but the newly included packages are only active if their desired parent is available.) The names of CDL options (and their #defines of course) stay the same for the serial drivers, for backward compatibility. * templates/*/current.ect: these have had CYGPKG_IO_SERIAL added rather than it being in (almost) all target definitions. 2000-04-05 Jonathan Larmour <jlarmour@redhat.co.uk> * src/common/tty.c (tty_read): CRLF conversion should use \r\n not \n\r (tty_write): Similarly * include/ttyio.h: Update CYG_TTY_IN_FLAGS_CRLF and CYG_TTY_IN_FLAGS_CRLF to match2000-03-31 Jesper Skov <jskov@redhat.com> * cdl/ser_sh_edk7708.cdl: Limit legal baud rate range. * src/sh/sh_sci_serial.c: Use baud rate macro instead of hardwired constants.2000-03-28 John Dallaway <jld@cygnus.co.uk> * cdl/io_serial.cdl, cdl/ser_arm_aeb.cdl, cdl/ser_arm_cma230.cdl, cdl/ser_arm_edb7xxx.cdl, cdl/ser_arm_pid.cdl, cdl/ser_i386_pc.cdl, cdl/ser_mips_jmr3904.cdl, cdl/ser_mips_vrc4373.cdl, cdl/ser_mn10300.cdl, cdl/ser_powerpc_cogent.cdl, cdl/ser_quicc_smc.cdl, cdl/ser_sh_edk7708.cdl, cdl/ser_sparclite_sleb.cdl, cdl/tty.cdl: Adjust documentation URLs.2000-03-07 Jesper Skov <jskov@redhat.com> * cdl/ser_mips_jmr3904.cdl: Rename devices to match CDL naming.2000-02-29 Jonathan Larmour <jlarmour@redhat.co.uk> * include/serialio.h: Correct baud rate typo: 230400 rather than 234000. Thanks to Grant Edwards for the report.2000-02-28 Gary Thomas <gthomas@cygnus.co.uk> * src/powerpc/quicc_smc_serial.c: Use standard 'diag_dump_buf()'.2000-02-28 Jesper Skov <jskov@redhat.com> * tests/ser_test_protocol.inl: Allow 115200 baud on Cogent again. Fixed interrupt problem.2000-02-22 Jesper Skov <jskov@redhat.com> * tests/ser_test_protocol.inl: Don't use 115200 baud on Cogent. Our slower boards can't keep up.2000-02-17 Gary Thomas <gthomas@cygnus.co.uk> * cdl/ser_powerpc_cogent.cdl: Fix incorrect dependency.2000-02-16 Nick Garnett <nickg@cygnus.co.uk> * include/pkgconf/io_serial.h: Added configury for PC serial device drivers. * cdl/ser_i386_pc.cdl: * src/i386/pc_serial.c: * src/i386/pc_serial.h: Added these files to implement PC serial line drivers. * cdl/io_serial.cdl: Added CYGPKG_IO_SERIAL_I386_PC. * tests/ser_test_protocol.inl: Added support for PC serial line testing. 2000-02-11 Jesper Skov <jskov@redhat.com> * src/sh/sh_sci_7708.inl (DEVTAB_ENTRY): * src/sparclite/sleb_sdtr.c: serial_devio => cyg_io_serial_devio2000-02-10 Jonathan Larmour <jlarmour@redhat.co.uk> * src/mn10300/mn10300_serial.c: Ensure all CYG_HAL_MN10300_* preprocessor conditionals use the correct CYGPKG_HAL_MN10300_AM3* form now. 2000-02-03 Jesper Skov <jskov@redhat.com> * src/powerpc/quicc_smc_serial.c: CYG_HAL_POWERPC_x->CYGPKG_...2000-02-02 Jonathan Larmour <jlarmour@redhat.co.uk> * src/arm/aeb_serial.h: Rename lower case register macros to REG_ upper case macros * src/arm/aeb_serial.c: Update to reflect above2000-01-31 Simon FitzMaurice <sdf@cygnus.co.uk> * cdl/*.cdl: Adjust help URLs in line with new doc layout. 2000-01-28 Simon FitzMaurice <sdf@cygnus.co.uk> * cdl/*.cdl: Adjust help URLs in line with new doc layout. 2000-01-28 Gary Thomas <gthomas@cygnus.co.uk> * src/common/tty.c (tty_read): Fix problem with backspace at start of line (size must be 'signed' for compare to work).2000-01-19 Hugo Tyson <hmt@cygnus.co.uk> * cdl/*.cdl: Add descriptions to a number of options &c which were lacking same, also tidied up other typos as noticed en passant.2000-01-17 Gary Thomas <gthomas@cygnus.co.uk> * src/common/tty.c (tty_read): Avoid echoing "backspace/erase" at start of line.2000-01-05 Gary Thomas <gthomas@cygnus.co.uk> * src/common/serial.c (serial_write): Avoid potential deadlock if transmit start actually sends enough characters to signal cond wait.2000-01-03 Gary Thomas <gthomas@cygnus.co.uk> * include/serial.h: Fix namespace pollution - serial_devio => cyg_io_serial_devio serial_callbacks => cyg_io_serial_callbacks * src/mips/tx3904_serial.c: * src/mips/vrc4373_serial.c: * src/mn10300/mn10300_serial.c: * src/powerpc/quicc_smc_serial.c: * src/powerpc/cogent_serial_with_ints.c: * src/sparclite/sleb_sdtr.c: * src/arm/aeb_serial.c: * src/arm/pid_serial_with_ints.c: * src/arm/edb7xxx_serial.c: * src/arm/cma230_serial.c: * src/arm/ebsa285_serial.c: * src/common/haldiag.c: * src/common/serial.c: Fix namespace pollution - serial_devio => cyg_io_serial_devio1999-12-06 Gary Thomas <gthomas@cygnus.co.uk> * src/arm/pid_serial_with_ints.c (pid_serial_DSR): Add loop to handle case where an interrupt represents multiple events.1999-11-19 Gary Thomas <gthomas@cygnus.co.uk> * src/powerpc/quicc_smc_serial.c: Channel select for SMC2 was wrong.1999-11-18 Gary Thomas <gthomas@cygnus.co.uk> * include/pkgconf/io_serial.h: Remove mention of 7209/7212.1999-11-03 John Dallaway <jld@cygnus.co.uk> * cdl/io_serial.cdl: Define build options.1999-10-26 Jesper Skov <jskov@cygnus.co.uk> * tests/serial5.c (serial_test): Reduce speed in thumb mode. * src/arm/pid_serial.h: Added BE support. * src/PKGconf.mak: Use CYGPKG_<> instead of CYG_<> to control what needs to be compiled.1999-10-25 Gary Thomas <gthomas@cygnus.co.uk> * src/arm/pid_serial.h (ISR_RxTO): Define - character received but not handled "promptly". * src/arm/pid_serial_with_ints.c (pid_serial_DSR): Handle rcv interrupts properly (can't ignore them even with TO bit set). * src/arm/cl7211_serial.c (cl7211_serial_rx_DSR): Need to handle all input (empty input FIFO) otherwise characters get dropped.1999-10-15 Jesper Skov <jskov@cygnus.co.uk> * tests/ser_test_protocol.inl: Removed AEB rev C change. Was bogus.1999-10-11 Nick Garnett <nickg@cygnus.co.uk> * tests/ser_test_protocol.inl: Added configury for VR4300 testing. * src/mips/vrc4373_serial.c: Added Bi-endian support. * include/pkgconf/io_serial.h: Adjusted default baud rates to 38400.1999-10-06 Jesper Skov <jskov@cygnus.co.uk> * tests/ser_test_protocol.inl: Run tests on AEB rev C as well.1999-09-28 Hugo Tyson <hmt@cygnus.co.uk> * src/powerpc/quicc_smc_serial.c (quicc_smc_serial_init): Correct value supplied for interrupt priority - it may be unused, but it is asserted for range. Initialize the diagnostic channel if on an MBX and if NOT using SMC1 ourselves, to ensure that diag output and built-in stubs work correctly; otherwise reset the quicc and ignore SMC1 as before. Fix various warnings, mostly about casting/arg-passing/assigning away volatile.1999-08-31 Jesper Skov <jskov@cygnus.co.uk> * tests/ser_test_protocol.inl: Define dummy crash ID.1999-08-30 Jesper Skov <jskov@cygnus.co.uk> * tests/ser_test_protocol.inl: Added crash information which should help track down repeating errors.1999-08-20 Jesper Skov <jskov@cygnus.co.uk> * tests/README: Added.1999-08-18 Jesper Skov <jskov@cygnus.co.uk> * tests/tty1.c: * tests/tty2.c: * tests/serial1.c: * tests/serial2.c: * tests/serial3.c: * tests/serial4.c: * tests/serial5.c: * tests/PKGconf.mak: Require kernel and kernel C API. 1999-08-17 Nick Garnett <nickg@cygnus.co.uk> * src/mn10300/mn10300_serial.c: Added a simple implementation of a receive FIFO to try and reduce the overhead of receiving bytes.1999-08-16 Jonathan Larmour <jlarmour@cygnus.co.uk> * src/PKGconf.mak: * src/mn10300/mn10300_serial.c: * tests/ser_test_protocol.inl: Rename all am32 -> am311999-08-12 Nick Garnett <nickg@cygnus.co.uk> Imported following changes from development branch: 1999-08-11 Nick Garnett <nickg@cygnus.co.uk> * tests/serial5.c: Modified config test for boards that need a lower speed for this test. * tests/ser_test_protocol.inl: Removed 14400 baud tests for all MN10300 variants. The MN10300 cannot currently do this speed. * src/mn10300/mn10300_serial.c: Tidied up the transmit interrupt enable/disable code to be variant specific.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?