Mercurial > ecos
annotate packages/hal/powerpc/adder/current/ChangeLog @ 1755:d61d51cfd8ab
Move parallel port initializations to platform code
| author | gthomas |
|---|---|
| date | Thu, 16 Sep 2004 23:23:54 +0000 |
| parents | 0e3378e69a2a |
| children | 7251145cdb9d |
| rev | line source |
|---|---|
|
1755
d61d51cfd8ab
Move parallel port initializations to platform code
gthomas
parents:
1453
diff
changeset
|
1 2004-09-16 Gary Thomas <gary@mlbassoc.com> |
|
d61d51cfd8ab
Move parallel port initializations to platform code
gthomas
parents:
1453
diff
changeset
|
2 |
|
d61d51cfd8ab
Move parallel port initializations to platform code
gthomas
parents:
1453
diff
changeset
|
3 * src/hal_aux.c (hal_platform_init): Move parallel port initializations |
|
d61d51cfd8ab
Move parallel port initializations to platform code
gthomas
parents:
1453
diff
changeset
|
4 from variant here (comment says they are required re: errata, but no |
|
d61d51cfd8ab
Move parallel port initializations to platform code
gthomas
parents:
1453
diff
changeset
|
5 supporting documentation is known) |
|
d61d51cfd8ab
Move parallel port initializations to platform code
gthomas
parents:
1453
diff
changeset
|
6 |
|
1453
0e3378e69a2a
Fix some issues with network debugging by not clearing caches on startup
gthomas
parents:
1437
diff
changeset
|
7 2003-12-21 Gary Thomas <gary@mlbassoc.com> |
|
0e3378e69a2a
Fix some issues with network debugging by not clearing caches on startup
gthomas
parents:
1437
diff
changeset
|
8 |
|
0e3378e69a2a
Fix some issues with network debugging by not clearing caches on startup
gthomas
parents:
1437
diff
changeset
|
9 * src/adder.S: Only clear caches on non-RAM startup modes. This fixes |
|
0e3378e69a2a
Fix some issues with network debugging by not clearing caches on startup
gthomas
parents:
1437
diff
changeset
|
10 some problems when using network debug connections (messing with the |
|
0e3378e69a2a
Fix some issues with network debugging by not clearing caches on startup
gthomas
parents:
1437
diff
changeset
|
11 caches seems to confuse the CPM) |
|
0e3378e69a2a
Fix some issues with network debugging by not clearing caches on startup
gthomas
parents:
1437
diff
changeset
|
12 |
| 1437 | 13 2003-12-10 Gary Thomas <gary@mlbassoc.com> |
| 14 | |
| 15 * cdl/hal_powerpc_adder.cdl: System clock was using wrong frequency | |
| 16 (time base). On this platform, it's configured to use the raw | |
| 17 OSCLK which is a constant 10MHz, not the higher speed PLL based | |
| 18 clocks. | |
| 19 | |
|
1432
f9dc30f9589a
Rework CDL to use common defines for HAL_PLATFORM_CPU
gthomas
parents:
1231
diff
changeset
|
20 2003-12-08 Gary Thomas <gary@mlbassoc.com> |
|
f9dc30f9589a
Rework CDL to use common defines for HAL_PLATFORM_CPU
gthomas
parents:
1231
diff
changeset
|
21 |
|
f9dc30f9589a
Rework CDL to use common defines for HAL_PLATFORM_CPU
gthomas
parents:
1231
diff
changeset
|
22 * cdl/hal_powerpc_adder.cdl: |
|
f9dc30f9589a
Rework CDL to use common defines for HAL_PLATFORM_CPU
gthomas
parents:
1231
diff
changeset
|
23 HAL_PLATFORM_CPU now defined by MPC8xx variant CDL. |
|
f9dc30f9589a
Rework CDL to use common defines for HAL_PLATFORM_CPU
gthomas
parents:
1231
diff
changeset
|
24 |
|
1231
3c221a743075
Remove DNS from RedBoot template & adjust .ecm files - BUG #57316
gthomas
parents:
1182
diff
changeset
|
25 2003-09-21 Gary Thomas <gary@mlbassoc.com> |
|
3c221a743075
Remove DNS from RedBoot template & adjust .ecm files - BUG #57316
gthomas
parents:
1182
diff
changeset
|
26 |
|
3c221a743075
Remove DNS from RedBoot template & adjust .ecm files - BUG #57316
gthomas
parents:
1182
diff
changeset
|
27 * misc/adderII_redboot_ROMRAM.ecm: |
|
3c221a743075
Remove DNS from RedBoot template & adjust .ecm files - BUG #57316
gthomas
parents:
1182
diff
changeset
|
28 * misc/adder_redboot_ROMRAM.ecm: Adjust for changes in RedBoot |
|
3c221a743075
Remove DNS from RedBoot template & adjust .ecm files - BUG #57316
gthomas
parents:
1182
diff
changeset
|
29 template - DNS now must be enabled manually. |
|
3c221a743075
Remove DNS from RedBoot template & adjust .ecm files - BUG #57316
gthomas
parents:
1182
diff
changeset
|
30 |
|
1182
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
31 2003-08-28 Gary Thomas <gary@mlbassoc.com> |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
32 |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
33 * src/redboot_linux_exec.c: Obsolete file - removed. |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
34 |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
35 * src/plf_redboot_linux_exec.c: New file - platform specifics |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
36 for booting Linux kernel from RedBoot. |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
37 |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
38 * cdl/hal_powerpc_adder.cdl: Linux booting from RedBoot is |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
39 now supported at the architecture level. Changes to support |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
40 architecture/platform layering. |
|
8c272f96c3ed
Better handling of RedBoot Linux 'exec' with architecture/platform layering
gthomas
parents:
1130
diff
changeset
|
41 |
| 1130 | 42 2003-07-18 Nick Garnett <nickg@balti.calivar.com> |
| 43 | |
| 44 * cdl/hal_powerpc_adder.cdl: | |
| 45 Changed values for CYGNUM_HAL_RTC_NUMERATOR, | |
| 46 CYGNUM_HAL_RTC_DENOMINATOR and CYGNUM_HAL_RTC_PERIOD to | |
| 47 "default_value" from "calculated". This makes it easier | |
| 48 to change these values globally. | |
| 49 | |
| 948 | 50 2003-04-16 Gary Thomas <gary@mlbassoc.com> |
| 51 | |
| 52 * src/hal_aux.c (hal_platform_init): Set up GPIO bits according | |
| 53 to platform type. | |
| 54 | |
| 890 | 55 2003-03-31 Gary Thomas <gary@mlbassoc.com> |
| 56 | |
| 57 * cdl/hal_powerpc_adder.cdl: Enable use of SCC3 on AdderII. | |
| 58 | |
|
862
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
59 2003-03-24 Gary Thomas <gary@mlbassoc.com> |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
60 |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
61 * misc/redboot_ROMRAM.ecm: Remove. |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
62 |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
63 * misc/adder_redboot_ROMRAM.ecm: |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
64 * misc/adderII_redboot_ROMRAM.ecm: New file(s), distinguish platforms. |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
65 |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
66 * src/hal_aux.c: |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
67 * src/adder.S: |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
68 * cdl/hal_powerpc_adder.cdl: Update to support new platform - AdderII. |
|
725ba4e57f0c
Add support for A&M Adder-II (by extending Adder platform)
gthomas
parents:
860
diff
changeset
|
69 |
|
860
8e23fe1ac05e
Improve processor type support. Add baud rate generator allocation.
gthomas
parents:
857
diff
changeset
|
70 2003-03-23 Gary Thomas <gary@mlbassoc.com> |
|
8e23fe1ac05e
Improve processor type support. Add baud rate generator allocation.
gthomas
parents:
857
diff
changeset
|
71 |
|
8e23fe1ac05e
Improve processor type support. Add baud rate generator allocation.
gthomas
parents:
857
diff
changeset
|
72 * cdl/hal_powerpc_adder.cdl: New option for setting processor type. |
|
8e23fe1ac05e
Improve processor type support. Add baud rate generator allocation.
gthomas
parents:
857
diff
changeset
|
73 |
| 857 | 74 2003-03-20 Gary Thomas <gary@mlbassoc.com> |
| 75 | |
| 76 * src/hal_aux.c (hal_platform_init): Fix SCC2/SCC3 routing. | |
| 77 | |
| 822 | 78 2003-03-11 Mark Salter <msalter@redhat.com> |
| 79 | |
| 80 * src/redboot_linux_exec.c (do_exec): Call eth_drv_stop as necessary. | |
| 81 | |
| 555 | 82 2003-01-31 Gary Thomas <gary@mlbassoc.com> |
| 83 | |
| 84 * cdl/hal_powerpc_adder.cdl: No tests currently defined. | |
| 85 | |
| 443 | 86 2002-12-02 Gary Thomas <gthomas@ecoscentric.com> |
| 87 | |
| 88 * include/plf_intr.h: Use MPC8xx variant RESET support. | |
| 89 | |
| 437 | 90 2002-11-26 Gary Thomas <gthomas@ecoscentric.com> |
| 91 | |
| 92 * misc/redboot_ROMRAM.ecm: Export. | |
| 93 | |
| 94 * cdl/hal_powerpc_adder.cdl: Move platform #define to platform package. | |
| 95 | |
| 432 | 96 2002-11-25 Gary Thomas <gthomas@ecoscentric.com> |
| 97 | |
| 98 * src/redboot_linux_exec.c: | |
| 99 * src/hal_diag.c: | |
| 100 * src/hal_aux.c: | |
| 101 * src/adder.S: | |
| 102 * misc/redboot_ROMRAM.ecm: | |
| 103 * include/pkgconf/mlt_powerpc_adder_romram.mlt: | |
| 104 * include/pkgconf/mlt_powerpc_adder_romram.ldi: | |
| 105 * include/pkgconf/mlt_powerpc_adder_romram.h: | |
| 106 * include/pkgconf/mlt_powerpc_adder_rom.mlt: | |
| 107 * include/pkgconf/mlt_powerpc_adder_rom.ldi: | |
| 108 * include/pkgconf/mlt_powerpc_adder_rom.h: | |
| 109 * include/pkgconf/mlt_powerpc_adder_ram.mlt: | |
| 110 * include/pkgconf/mlt_powerpc_adder_ram.ldi: | |
| 111 * include/pkgconf/mlt_powerpc_adder_ram.h: | |
| 112 * include/plf_stub.h: | |
| 113 * include/plf_regs.h: | |
| 114 * include/plf_intr.h: | |
| 115 * include/plf_cache.h: | |
| 116 * include/hal_diag.h: | |
| 117 * cdl/hal_powerpc_adder.cdl: New package - platform specifics for | |
| 118 Analogue & Micro Adder (PowerPC 850) boards. | |
| 119 | |
| 120 //=========================================================================== | |
| 121 //####ECOSGPLCOPYRIGHTBEGIN#### | |
| 122 // ------------------------------------------- | |
| 123 // This file is part of eCos, the Embedded Configurable Operating System. | |
| 822 | 124 // Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Red Hat, Inc. |
| 432 | 125 // Copyright (C) 2002 Gary Thomas |
| 126 // | |
| 127 // eCos is free software; you can redistribute it and/or modify it under | |
| 128 // the terms of the GNU General Public License as published by the Free | |
| 129 // Software Foundation; either version 2 or (at your option) any later version. | |
| 130 // | |
| 131 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY | |
| 132 // WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| 133 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
| 134 // for more details. | |
| 135 // | |
| 136 // You should have received a copy of the GNU General Public License along | |
| 137 // with eCos; if not, write to the Free Software Foundation, Inc., | |
| 138 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. | |
| 139 // | |
| 140 // As a special exception, if other files instantiate templates or use macros | |
| 141 // or inline functions from this file, or you compile this file and link it | |
| 142 // with other works to produce a work based on this file, this file does not | |
| 143 // by itself cause the resulting work to be covered by the GNU General Public | |
| 144 // License. However the source code for this file must still be made available | |
| 145 // in accordance with section (3) of the GNU General Public License. | |
| 146 // | |
| 147 // This exception does not invalidate any other reasons why a work based on | |
| 148 // this file might be covered by the GNU General Public License. | |
| 149 // | |
| 150 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. | |
| 151 // at http://sources.redhat.com/ecos/ecos-license/ | |
| 152 // ------------------------------------------- | |
| 153 //####ECOSGPLCOPYRIGHTEND#### | |
| 154 //=========================================================================== |
