source: rtems/c/src/lib/libbsp/m68k/mcf5225x/README @ 33a105fb

4.115
Last change on this file since 33a105fb was 5283f858, checked in by Joel Sherrill <joel.sherrill@…>, on 06/21/10 at 22:55:20

2010-06-21 Joel Sherrill <joel.sherrill@…>

  • README: Remove more ITRON references.
  • Property mode set to 100644
File size: 5.2 KB
Line 
1#
2#  $Id:
3#
4
5Description: embed-it dpu
6============================================================================
7CPU: MCF52259, ??MHz
8SRAM: 64K
9FLASH: 512K
10
11This is a embed-it board that uses the MCF52258 Coldfire CPU.
12This board is running at ??MHz scaled from the internal relocation 8MHz oscillator.
13
14
15
16OLD-STUFF from MCF52235 EVB ... we have to change it ...
17============================================================================
18NOTES:
19
20Currently this BSP must be configured with most RTEMS features turned
21off as RAM usage is too high.
22
23Configure as follows:
24configure --target=m68k-rtems4.XXX --enable-rtemsbsp=mcf52235 ...
25
26To get the tests to compile (but not run) change the linkcmds to specify
27a larger sram memory region (256K works).  This of course will let you
28compile all tests, but many or most of them wont run.
29
30See testsuites/samples/minumum for an example of what type of config flags
31you need for this BSP!
32
33In you project before you include confdefs.h, define some or all of the
34following:
35
36#define CONFIGURE_DISABLE_CLASSIC_API_NOTEPADS
37#define CONFIGURE_DISABLE_CLASSIC_NOTEPADS
38#define CONFIGURE_INIT_TASK_STACK_SIZE x
39#define CONFIGURE_MINIMUM_TASK_STACK_SIZE x
40#define CONFIGURE_INTERRUPT_STACK_SIZE x
41
42Note that the default stack size is 1K
43Note that the default number of priorities is 15
44
45============================================================================
46TODO:
47
48*) Add drivers for I2C, ADC, FEC
49*) Support for LWIP
50*) Update the coverhd.h (calling overheads) page 21 of the BSP guide
51*) Recover the 1K stack space reserved in linkcmds used for board startup.
52
53============================================================================
54
55      Interrupt map
56
57+-----+-----------------------------------------------------------------------+
58|     |                                PRIORITY                               |
59+-----+--------+--------+--------+--------+--------+--------+--------+--------+
60|LEVEL|    7   |    6   |    5   |    4   |    3   |    2   |    1   |    0   |
61+-----+--------+--------+--------+--------+--------+--------+--------+--------+
62|  7  |        |        |        |        |        |        |        |        |
63+-----+--------+--------+--------+--------+--------+--------+--------+--------+
64|  6  |        |        |        |        |        |        |        |        |
65+-----+--------+--------+--------+--------+--------+--------+--------+--------+
66|  5  |        |        |        |        |        |        |        |        |
67+-----+--------+--------+--------+--------+--------+--------+--------+--------+
68|  4  |        |        |        |        |        |        |        |   PIT  |
69+-----+--------+--------+--------+--------+--------+--------+--------+--------+
70|  3  | UART 0 | UART 1 | UART 2 |        |        |        |        |        |
71+-----+--------+--------+--------+--------+--------+--------+--------+--------+
72|  2  |        |        |        |        |        |        |        |        |
73+-----+--------+--------+--------+--------+--------+--------+--------+--------+
74|  1  |        |        |        |        |        |        |        |        |
75+-----+--------+--------+--------+--------+--------+--------+--------+--------+
76
77============================================================================
78
79*** TIME TEST 1 ***
80rtems_semaphore_create 8
81rtems_semaphore_delete 10
82rtems_semaphore_obtain: available 3
83rtems_semaphore_obtain: not available -- NO_WAIT 3
84rtems_semaphore_release: no waiting tasks 7
85*** END OF TEST 1 ***
86
87
88*** TIME TEST OVERHEAD ***
89rtems_shutdown_executive 0
90rtems_task_create 0
91rtems_task_ident 0
92rtems_task_start 0
93rtems_task_restart 0
94rtems_task_delete 0
95rtems_task_suspend 0
96rtems_task_resume 0
97rtems_task_set_priority 0
98rtems_task_mode 0
99rtems_task_get_note 0
100rtems_task_set_note 0
101rtems_task_wake_when 0
102rtems_task_wake_after 0
103rtems_interrupt_catch 0
104rtems_clock_get 0
105rtems_clock_set 0
106rtems_clock_tick 0
107<pause>
108rtems_timer_create 0
109rtems_timer_delete 0
110rtems_timer_ident 0
111rtems_timer_fire_after 0
112rtems_timer_fire_when 1
113rtems_timer_reset 0
114rtems_timer_cancel 0
115rtems_semaphore_create 0
116rtems_semaphore_delete 0
117rtems_semaphore_ident 0
118rtems_semaphore_obtain 0
119rtems_semaphore_release 0
120rtems_message_queue_create 0
121rtems_message_queue_ident 0
122rtems_message_queue_delete 0
123rtems_message_queue_send 0
124rtems_message_queue_urgent 0
125rtems_message_queue_broadcast 0
126rtems_message_queue_receive 0
127rtems_message_queue_flush 0
128<pause>
129rtems_event_send 0
130rtems_event_receive 0
131rtems_signal_catch 0
132rtems_signal_send 0
133rtems_partition_create 0
134rtems_partition_ident 0
135rtems_partition_delete 0
136rtems_partition_get_buffer 0
137rtems_partition_return_buffer 0
138rtems_region_create 0
139rtems_region_ident 0
140rtems_region_delete 0
141rtems_region_get_segment 0
142rtems_region_return_segment 0
143rtems_port_create 0
144rtems_port_ident 0
145rtems_port_delete 0
146rtems_port_external_to_internal 0
147rtems_port_internal_to_external 0
148<pause>
149rtems_io_initialize 0
150rtems_io_open 0
151rtems_io_close 0
152rtems_io_read 0
153rtems_io_write 0
154rtems_io_control 0
155rtems_fatal_error_occurred 0
156rtems_rate_monotonic_create 0
157rtems_rate_monotonic_ident 0
158rtems_rate_monotonic_delete 0
159rtems_rate_monotonic_cancel 0
160rtems_rate_monotonic_period 0
161rtems_multiprocessing_announce 0
162*** END OF TIME OVERHEAD ***
163
164
Note: See TracBrowser for help on using the repository browser.