[sim] Run spellcheck.sh in sim (part 2)
[binutils-gdb.git] / sim / mn10300 / dv-mn103tim.c
blob6cc58c9f36532b224b80954a46e455cd3e0cbdbd
1 /* This file is part of the program GDB, the GNU debugger.
3 Copyright (C) 1998-2024 Free Software Foundation, Inc.
4 Contributed by Cygnus Solutions.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 /* This must come before any other includes. */
22 #include "defs.h"
24 #include "sim-main.h"
25 #include "hw-main.h"
26 #include "sim-assert.h"
28 /* DEVICE
31 mn103tim - mn103002 timers (8 and 16 bit)
34 DESCRIPTION
36 Implements the mn103002 8 and 16 bit timers as described in the mn103002 user guide.
39 PROPERTIES
41 reg = <8bit-timers-addr> <8bit-timers-size> <16bit-timers-addr> <16bit-timers-size>
44 BUGS
49 /* The timers' register address blocks */
51 struct mn103tim_block {
52 unsigned_word base;
53 unsigned_word bound;
56 enum { TIMER8_BLOCK, TIMER16_BLOCK, NR_TIMER_BLOCKS };
58 enum timer_register_types {
59 FIRST_MODE_REG = 0,
60 TM0MD = FIRST_MODE_REG,
61 TM1MD,
62 TM2MD,
63 TM3MD,
64 TM4MD,
65 TM5MD,
66 TM6MD,
67 LAST_MODE_REG = TM6MD,
68 FIRST_BASE_REG,
69 TM0BR = FIRST_BASE_REG,
70 TM1BR,
71 TM2BR,
72 TM3BR,
73 TM4BR,
74 TM5BR,
75 LAST_BASE_REG = TM5BR,
76 FIRST_COUNTER,
77 TM0BC = FIRST_COUNTER,
78 TM1BC,
79 TM2BC,
80 TM3BC,
81 TM4BC,
82 TM5BC,
83 TM6BC,
84 LAST_COUNTER = TM6BC,
85 TM6MDA,
86 TM6MDB,
87 TM6CA,
88 TM6CB,
89 LAST_TIMER_REG = TM6CB,
93 /* Don't include timer 6 because it's handled specially. */
94 #define NR_8BIT_TIMERS 4
95 #define NR_16BIT_TIMERS 2
96 #define NR_REG_TIMERS 6 /* Exclude timer 6 - it's handled specially. */
97 #define NR_TIMERS 7
99 typedef struct _mn10300_timer_regs {
100 uint32_t base;
101 uint8_t mode;
102 } mn10300_timer_regs;
104 typedef struct _mn10300_timer {
105 uint32_t div_ratio, start;
106 struct hw_event *event;
107 } mn10300_timer;
110 struct mn103tim {
111 struct mn103tim_block block[NR_TIMER_BLOCKS];
112 mn10300_timer_regs reg[NR_REG_TIMERS];
113 mn10300_timer timer[NR_TIMERS];
115 /* treat timer 6 registers specially. */
116 uint16_t tm6md0, tm6md1, tm6bc, tm6ca, tm6cb;
117 uint8_t tm6mda, tm6mdb; /* compare/capture mode regs for timer 6 */
120 /* output port ID's */
122 /* for mn103002 */
123 enum {
124 TIMER0_UFLOW,
125 TIMER1_UFLOW,
126 TIMER2_UFLOW,
127 TIMER3_UFLOW,
128 TIMER4_UFLOW,
129 TIMER5_UFLOW,
130 TIMER6_UFLOW,
131 TIMER6_CMPA,
132 TIMER6_CMPB,
136 static const struct hw_port_descriptor mn103tim_ports[] = {
138 { "timer-0-underflow", TIMER0_UFLOW, 0, output_port, },
139 { "timer-1-underflow", TIMER1_UFLOW, 0, output_port, },
140 { "timer-2-underflow", TIMER2_UFLOW, 0, output_port, },
141 { "timer-3-underflow", TIMER3_UFLOW, 0, output_port, },
142 { "timer-4-underflow", TIMER4_UFLOW, 0, output_port, },
143 { "timer-5-underflow", TIMER5_UFLOW, 0, output_port, },
145 { "timer-6-underflow", TIMER6_UFLOW, 0, output_port, },
146 { "timer-6-compare-a", TIMER6_CMPA, 0, output_port, },
147 { "timer-6-compare-b", TIMER6_CMPB, 0, output_port, },
149 { NULL, },
152 #define bits2to5_mask 0x3c
153 #define bits0to2_mask 0x07
154 #define load_mask 0x40
155 #define count_mask 0x80
156 #define count_and_load_mask (load_mask | count_mask)
157 #define clock_mask 0x03
158 #define clk_ioclk 0x00
159 #define clk_cascaded 0x03
162 /* Finish off the partially created hw device. Attach our local
163 callbacks. Wire up our port names etc */
165 static hw_io_read_buffer_method mn103tim_io_read_buffer;
166 static hw_io_write_buffer_method mn103tim_io_write_buffer;
168 static void
169 attach_mn103tim_regs (struct hw *me,
170 struct mn103tim *timers)
172 int i;
173 if (hw_find_property (me, "reg") == NULL)
174 hw_abort (me, "Missing \"reg\" property");
175 for (i = 0; i < NR_TIMER_BLOCKS; i++)
177 unsigned_word attach_address;
178 int attach_space;
179 unsigned attach_size;
180 reg_property_spec reg;
181 if (!hw_find_reg_array_property (me, "reg", i, &reg))
182 hw_abort (me, "\"reg\" property must contain three addr/size entries");
183 hw_unit_address_to_attach_address (hw_parent (me),
184 &reg.address,
185 &attach_space,
186 &attach_address,
187 me);
188 timers->block[i].base = attach_address;
189 hw_unit_size_to_attach_size (hw_parent (me),
190 &reg.size,
191 &attach_size, me);
192 timers->block[i].bound = attach_address + (attach_size - 1);
193 hw_attach_address (hw_parent (me),
195 attach_space, attach_address, attach_size,
196 me);
200 static void
201 mn103tim_finish (struct hw *me)
203 struct mn103tim *timers;
204 int i;
206 timers = HW_ZALLOC (me, struct mn103tim);
207 set_hw_data (me, timers);
208 set_hw_io_read_buffer (me, mn103tim_io_read_buffer);
209 set_hw_io_write_buffer (me, mn103tim_io_write_buffer);
210 set_hw_ports (me, mn103tim_ports);
212 /* Attach ourself to our parent bus */
213 attach_mn103tim_regs (me, timers);
215 /* Initialize the timers */
216 for ( i=0; i < NR_REG_TIMERS; ++i )
218 timers->reg[i].mode = 0x00;
219 timers->reg[i].base = 0;
221 for ( i=0; i < NR_TIMERS; ++i )
223 timers->timer[i].event = NULL;
224 timers->timer[i].div_ratio = 0;
225 timers->timer[i].start = 0;
227 timers->tm6md0 = 0x00;
228 timers->tm6md1 = 0x00;
229 timers->tm6bc = 0x0000;
230 timers->tm6ca = 0x0000;
231 timers->tm6cb = 0x0000;
232 timers->tm6mda = 0x00;
233 timers->tm6mdb = 0x00;
238 /* read and write */
240 static int
241 decode_addr (struct hw *me,
242 struct mn103tim *timers,
243 unsigned_word address)
245 unsigned_word offset;
246 offset = address - timers->block[0].base;
248 switch (offset)
250 case 0x00: return TM0MD;
251 case 0x01: return TM1MD;
252 case 0x02: return TM2MD;
253 case 0x03: return TM3MD;
254 case 0x10: return TM0BR;
255 case 0x11: return TM1BR;
256 case 0x12: return TM2BR;
257 case 0x13: return TM3BR;
258 case 0x20: return TM0BC;
259 case 0x21: return TM1BC;
260 case 0x22: return TM2BC;
261 case 0x23: return TM3BC;
262 case 0x80: return TM4MD;
263 case 0x82: return TM5MD;
264 case 0x84: /* fall through */
265 case 0x85: return TM6MD;
266 case 0x90: return TM4BR;
267 case 0x92: return TM5BR;
268 case 0xa0: return TM4BC;
269 case 0xa2: return TM5BC;
270 case 0xa4: return TM6BC;
271 case 0xb4: return TM6MDA;
272 case 0xb5: return TM6MDB;
273 case 0xc4: return TM6CA;
274 case 0xd4: return TM6CB;
275 default:
277 hw_abort (me, "bad address");
278 return -1;
283 static void
284 read_mode_reg (struct hw *me,
285 struct mn103tim *timers,
286 int timer_nr,
287 void *dest,
288 unsigned nr_bytes)
290 uint16_t val16;
291 uint32_t val32;
293 switch ( nr_bytes )
295 case 1:
296 /* Accessing 1 byte is ok for all mode registers. */
297 if ( timer_nr == 6 )
299 *(uint8_t*)dest = timers->tm6md0;
301 else
303 *(uint8_t*)dest = timers->reg[timer_nr].mode;
305 break;
307 case 2:
308 if ( timer_nr == 6 )
310 *(uint16_t *)dest = (timers->tm6md0 << 8) | timers->tm6md1;
312 else if ( timer_nr == 0 || timer_nr == 2 )
314 val16 = (timers->reg[timer_nr].mode << 8)
315 | timers->reg[timer_nr+1].mode;
316 *(uint16_t*)dest = val16;
318 else
320 hw_abort (me, "bad read size of 2 bytes to TM%dMD.", timer_nr);
322 break;
324 case 4:
325 if ( timer_nr == 0 )
327 val32 = (timers->reg[0].mode << 24 )
328 | (timers->reg[1].mode << 16)
329 | (timers->reg[2].mode << 8)
330 | timers->reg[3].mode;
331 *(uint32_t*)dest = val32;
333 else
335 hw_abort (me, "bad read size of 4 bytes to TM%dMD.", timer_nr);
337 break;
339 default:
340 hw_abort (me, "bad read size of %d bytes to TM%dMD.",
341 nr_bytes, timer_nr);
346 static void
347 read_base_reg (struct hw *me,
348 struct mn103tim *timers,
349 int timer_nr,
350 void *dest,
351 unsigned nr_bytes)
353 uint16_t val16;
354 uint32_t val32;
356 /* Check nr_bytes: accesses of 1, 2 and 4 bytes allowed depending on timer. */
357 switch ( nr_bytes )
359 case 1:
360 /* Reading 1 byte is ok for all registers. */
361 if ( timer_nr < NR_8BIT_TIMERS )
363 *(uint8_t*)dest = timers->reg[timer_nr].base;
365 break;
367 case 2:
368 if ( timer_nr == 1 || timer_nr == 3 )
370 hw_abort (me, "bad read size of 2 bytes to TM%dBR.", timer_nr);
372 else
374 if ( timer_nr < NR_8BIT_TIMERS )
376 val16 = (timers->reg[timer_nr].base<<8)
377 | timers->reg[timer_nr+1].base;
379 else
381 val16 = timers->reg[timer_nr].base;
383 *(uint16_t*)dest = val16;
385 break;
387 case 4:
388 if ( timer_nr == 0 )
390 val32 = (timers->reg[0].base << 24) | (timers->reg[1].base << 16)
391 | (timers->reg[2].base << 8) | timers->reg[3].base;
392 *(uint32_t*)dest = val32;
394 else if ( timer_nr == 4 )
396 val32 = (timers->reg[4].base << 16) | timers->reg[5].base;
397 *(uint32_t*)dest = val32;
399 else
401 hw_abort (me, "bad read size of 4 bytes to TM%dBR.", timer_nr);
403 break;
405 default:
406 hw_abort (me, "bad read size must of %d bytes to TM%dBR.",
407 nr_bytes, timer_nr);
412 static void
413 read_counter (struct hw *me,
414 struct mn103tim *timers,
415 int timer_nr,
416 void *dest,
417 unsigned nr_bytes)
419 uint32_t val;
421 if ( NULL == timers->timer[timer_nr].event )
423 /* Timer is not counting, use value in base register. */
424 if ( timer_nr == 6 )
426 val = 0; /* timer 6 is an up counter */
428 else
430 val = timers->reg[timer_nr].base;
433 else
435 if ( timer_nr == 6 ) /* timer 6 is an up counter. */
437 val = hw_event_queue_time(me) - timers->timer[timer_nr].start;
439 else
441 /* ticks left = start time + div ratio - curr time */
442 /* Cannot use base register because it can be written during counting and it
443 doesn't affect counter until underflow occurs. */
445 val = timers->timer[timer_nr].start + timers->timer[timer_nr].div_ratio
446 - hw_event_queue_time(me);
450 switch (nr_bytes) {
451 case 1:
452 *(uint8_t *)dest = val;
453 break;
455 case 2:
456 *(uint16_t *)dest = val;
457 break;
459 case 4:
460 *(uint32_t *)dest = val;
461 break;
463 default:
464 hw_abort(me, "bad read size for reading counter");
470 static void
471 read_special_timer6_reg (struct hw *me,
472 struct mn103tim *timers,
473 int timer_nr,
474 void *dest,
475 unsigned nr_bytes)
477 switch (nr_bytes) {
478 case 1:
480 switch ( timer_nr ) {
481 case TM6MDA:
482 *(uint8_t *)dest = timers->tm6mda;
483 break;
485 case TM6MDB:
486 *(uint8_t *)dest = timers->tm6mdb;
487 break;
489 case TM6CA:
490 *(uint8_t *)dest = timers->tm6ca;
491 break;
493 case TM6CB:
494 *(uint8_t *)dest = timers->tm6cb;
495 break;
497 default:
498 break;
500 break;
503 case 2:
504 if ( timer_nr == TM6CA )
506 *(uint16_t *)dest = timers->tm6ca;
508 else if ( timer_nr == TM6CB )
510 *(uint16_t *)dest = timers->tm6cb;
512 else
514 hw_abort(me, "bad read size for timer 6 mode A/B register");
516 break;
518 default:
519 hw_abort(me, "bad read size for timer 6 register");
525 static unsigned
526 mn103tim_io_read_buffer (struct hw *me,
527 void *dest,
528 int space,
529 unsigned_word base,
530 unsigned nr_bytes)
532 struct mn103tim *timers = hw_data (me);
533 enum timer_register_types timer_reg;
535 HW_TRACE ((me, "read 0x%08lx %d", (long) base, (int) nr_bytes));
537 timer_reg = decode_addr (me, timers, base);
539 /* It can be either a mode register, a base register, a binary counter, */
540 /* or a special timer 6 register. Check in that order. */
541 if ( timer_reg >= FIRST_MODE_REG && timer_reg <= LAST_MODE_REG )
543 read_mode_reg(me, timers, timer_reg-FIRST_MODE_REG, dest, nr_bytes);
545 else if ( timer_reg <= LAST_BASE_REG )
547 read_base_reg(me, timers, timer_reg-FIRST_BASE_REG, dest, nr_bytes);
549 else if ( timer_reg <= LAST_COUNTER )
551 read_counter(me, timers, timer_reg-FIRST_COUNTER, dest, nr_bytes);
553 else if ( timer_reg <= LAST_TIMER_REG )
555 read_special_timer6_reg(me, timers, timer_reg, dest, nr_bytes);
557 else
559 hw_abort(me, "invalid timer register address.");
562 return nr_bytes;
566 static void
567 do_counter_event (struct hw *me,
568 void *data)
570 struct mn103tim *timers = hw_data(me);
571 long timer_nr = (uintptr_t) data;
572 int next_timer;
574 /* Check if counting is still enabled. */
575 if ( (timers->reg[timer_nr].mode & count_mask) != 0 )
577 /* Generate an interrupt for the timer underflow (TIMERn_UFLOW). */
579 /* Port event occurs on port of last cascaded timer. */
580 /* This works across timer range from 0 to NR_REG_TIMERS because */
581 /* the first 16 bit timer (timer 4) is not allowed to be set as */
582 /* a cascading timer. */
583 for ( next_timer = timer_nr+1; next_timer < NR_REG_TIMERS; ++next_timer )
585 if ( (timers->reg[next_timer].mode & clock_mask) != clk_cascaded )
587 break;
590 hw_port_event (me, next_timer-1, 1);
592 /* Schedule next timeout. */
593 timers->timer[timer_nr].start = hw_event_queue_time(me);
594 /* FIX: Check if div_ratio has changed and if it's now 0. */
595 timers->timer[timer_nr].event
596 = hw_event_queue_schedule (me, timers->timer[timer_nr].div_ratio,
597 do_counter_event, (void *)(uintptr_t)timer_nr);
599 else
601 timers->timer[timer_nr].event = NULL;
607 static void
608 do_counter6_event (struct hw *me,
609 void *data)
611 struct mn103tim *timers = hw_data(me);
612 long timer_nr = (uintptr_t) data;
614 /* Check if counting is still enabled. */
615 if ( (timers->reg[timer_nr].mode & count_mask) != 0 )
617 /* Generate an interrupt for the timer underflow (TIMERn_UFLOW). */
618 hw_port_event (me, timer_nr, 1);
620 /* Schedule next timeout. */
621 timers->timer[timer_nr].start = hw_event_queue_time(me);
622 /* FIX: Check if div_ratio has changed and if it's now 0. */
623 timers->timer[timer_nr].event
624 = hw_event_queue_schedule (me, timers->timer[timer_nr].div_ratio,
625 do_counter6_event, (void *)(uintptr_t)timer_nr);
627 else
629 timers->timer[timer_nr].event = NULL;
634 static void
635 write_base_reg (struct hw *me,
636 struct mn103tim *timers,
637 int timer_nr,
638 const void *source,
639 unsigned nr_bytes)
641 const uint8_t *buf8 = source;
642 const uint16_t *buf16 = source;
644 /* If TMnCNE == 0 (counting is off), writing to the base register
645 (TMnBR) causes a simultaneous write to the counter reg (TMnBC).
646 Else, the TMnBC is reloaded with the value from TMnBR when
647 underflow occurs. Since the counter register is not explicitly
648 maintained, this functionality is handled in read_counter. */
650 /* Check nr_bytes: write of 1, 2 or 4 bytes allowed depending on timer. */
651 switch ( nr_bytes )
653 case 1:
654 /* Storing 1 byte is ok for all registers. */
655 timers->reg[timer_nr].base = buf8[0];
656 break;
658 case 2:
659 if ( timer_nr == 1 || timer_nr == 3 )
661 hw_abort (me, "bad write size of 2 bytes to TM%dBR.", timer_nr);
663 else
665 if ( timer_nr < NR_8BIT_TIMERS )
667 timers->reg[timer_nr].base = buf8[0];
668 timers->reg[timer_nr+1].base = buf8[1];
670 else
672 timers->reg[timer_nr].base = buf16[0];
675 break;
677 case 4:
678 if ( timer_nr == 0 )
680 timers->reg[0].base = buf8[0];
681 timers->reg[1].base = buf8[1];
682 timers->reg[2].base = buf8[2];
683 timers->reg[3].base = buf8[3];
685 else if ( timer_nr == 4 )
687 timers->reg[4].base = buf16[0];
688 timers->reg[5].base = buf16[1];
690 else
692 hw_abort (me, "bad write size of 4 bytes to TM%dBR.", timer_nr);
694 break;
696 default:
697 hw_abort (me, "bad write size must of %d bytes to TM%dBR.",
698 nr_bytes, timer_nr);
703 static void
704 write_mode_reg (struct hw *me,
705 struct mn103tim *timers,
706 long timer_nr,
707 const void *source,
708 unsigned nr_bytes)
709 /* for timers 0 to 5 */
711 unsigned i;
712 uint8_t mode_val, next_mode_val;
713 uint32_t div_ratio;
715 if ( nr_bytes != 1 )
717 hw_abort (me, "bad write size of %d bytes to TM%ldMD.", nr_bytes,
718 timer_nr);
721 mode_val = *(uint8_t *)source;
722 timers->reg[timer_nr].mode = mode_val;
724 if ( ( mode_val & count_and_load_mask ) == count_and_load_mask )
726 hw_abort(me, "Cannot load base reg and start counting simultaneously.");
728 if ( ( mode_val & bits2to5_mask ) != 0 )
730 hw_abort(me, "Cannot write to bits 2 to 5 of mode register");
733 if ( mode_val & count_mask )
735 /* - de-schedule any previous event. */
736 /* - add new event to queue to start counting. */
737 /* - assert that counter == base reg? */
739 /* For cascaded timers, */
740 if ( (mode_val & clock_mask) == clk_cascaded )
742 if ( timer_nr == 0 || timer_nr == 4 )
744 hw_abort(me, "Timer %ld cannot be cascaded.", timer_nr);
747 else
749 div_ratio = timers->reg[timer_nr].base;
751 /* Check for cascading. */
752 if ( timer_nr < NR_8BIT_TIMERS )
754 for ( i = timer_nr + 1; i <= 3; ++i )
756 next_mode_val = timers->reg[i].mode;
757 if ( ( next_mode_val & clock_mask ) == clk_cascaded )
759 /* Check that CNE is on. */
760 if ( ( next_mode_val & count_mask ) == 0 )
762 hw_abort (me, "cascaded timer not ready for counting");
764 ASSERT(timers->timer[i].event == NULL);
765 ASSERT(timers->timer[i].div_ratio == 0);
766 div_ratio = div_ratio
767 | (timers->reg[i].base << (8*(i-timer_nr)));
769 else
771 break;
775 else
777 /* Mode register for a 16 bit timer */
778 next_mode_val = timers->reg[timer_nr+1].mode;
779 if ( ( next_mode_val & clock_mask ) == clk_cascaded )
781 /* Check that CNE is on. */
782 if ( ( next_mode_val & count_mask ) == 0 )
784 hw_abort (me, "cascaded timer not ready for counting");
786 ASSERT(timers->timer[timer_nr+1].event == NULL);
787 ASSERT(timers->timer[timer_nr+1].div_ratio == 0);
788 div_ratio = div_ratio | (timers->reg[timer_nr+1].base << 16);
792 timers->timer[timer_nr].div_ratio = div_ratio;
794 if ( NULL != timers->timer[timer_nr].event )
796 hw_event_queue_deschedule (me, timers->timer[timer_nr].event);
797 timers->timer[timer_nr].event = NULL;
800 if ( div_ratio > 0 )
802 /* Set start time. */
803 timers->timer[timer_nr].start = hw_event_queue_time(me);
804 timers->timer[timer_nr].event
805 = hw_event_queue_schedule(me, div_ratio,
806 do_counter_event,
807 (void *)(uintptr_t)timer_nr);
811 else
813 /* Turn off counting */
814 if ( NULL != timers->timer[timer_nr].event )
816 ASSERT((timers->reg[timer_nr].mode & clock_mask) != clk_cascaded);
817 hw_event_queue_deschedule (me, timers->timer[timer_nr].event);
818 timers->timer[timer_nr].event = NULL;
820 else
822 if ( (timers->reg[timer_nr].mode & clock_mask) == clk_cascaded )
824 ASSERT(timers->timer[timer_nr].event == NULL);
832 static void
833 write_tm6md (struct hw *me,
834 struct mn103tim *timers,
835 unsigned_word address,
836 const void *source,
837 unsigned nr_bytes)
839 uint8_t mode_val0 = 0x00, mode_val1 = 0x00;
840 uint32_t div_ratio;
841 long timer_nr = 6;
843 unsigned_word offset = address - timers->block[0].base;
845 if ((offset != 0x84 && nr_bytes > 1) || nr_bytes > 2 )
847 hw_abort (me, "Bad write size of %d bytes to TM6MD", nr_bytes);
850 if ( offset == 0x84 ) /* address of TM6MD */
852 /* Fill in first byte of mode */
853 mode_val0 = *(uint8_t *)source;
854 timers->tm6md0 = mode_val0;
856 if ( ( mode_val0 & 0x26 ) != 0 )
858 hw_abort(me, "Cannot write to bits 5, 3, and 2 of TM6MD");
862 if ( offset == 0x85 || nr_bytes == 2 )
864 /* Fill in second byte of mode */
865 if ( nr_bytes == 2 )
867 mode_val1 = *(uint8_t *)source+1;
869 else
871 mode_val1 = *(uint8_t *)source;
874 timers->tm6md1 = mode_val1;
876 if ( ( mode_val1 & count_and_load_mask ) == count_and_load_mask )
878 hw_abort(me, "Cannot load base reg and start counting simultaneously.");
880 if ( ( mode_val1 & bits0to2_mask ) != 0 )
882 hw_abort(me, "Cannot write to bits 8 to 10 of TM6MD");
886 if ( mode_val1 & count_mask )
888 /* - de-schedule any previous event. */
889 /* - add new event to queue to start counting. */
890 /* - assert that counter == base reg? */
892 div_ratio = timers->tm6ca; /* binary counter for timer 6 */
893 timers->timer[timer_nr].div_ratio = div_ratio;
894 if ( NULL != timers->timer[timer_nr].event )
896 hw_event_queue_deschedule (me, timers->timer[timer_nr].event);
897 timers->timer[timer_nr].event = NULL;
900 if ( div_ratio > 0 )
902 /* Set start time. */
903 timers->timer[timer_nr].start = hw_event_queue_time(me);
904 timers->timer[timer_nr].event
905 = hw_event_queue_schedule(me, div_ratio,
906 do_counter6_event,
907 (void *)(uintptr_t)timer_nr);
910 else
912 /* Turn off counting */
913 if ( NULL != timers->timer[timer_nr].event )
915 hw_event_queue_deschedule (me, timers->timer[timer_nr].event);
916 timers->timer[timer_nr].event = NULL;
923 static void
924 write_special_timer6_reg (struct hw *me,
925 struct mn103tim *timers,
926 int timer_nr,
927 const void *source,
928 unsigned nr_bytes)
930 switch (nr_bytes) {
931 case 1:
933 switch ( timer_nr ) {
934 case TM6MDA:
935 timers->tm6mda = *(uint8_t *)source;
936 break;
938 case TM6MDB:
939 timers->tm6mdb = *(uint8_t *)source;
940 break;
942 case TM6CA:
943 timers->tm6ca = *(uint8_t *)source;
944 break;
946 case TM6CB:
947 timers->tm6cb = *(uint8_t *)source;
948 break;
950 default:
951 break;
953 break;
956 case 2:
957 if ( timer_nr == TM6CA )
959 timers->tm6ca = *(uint16_t *)source;
961 else if ( timer_nr == TM6CB )
963 timers->tm6cb = *(uint16_t *)source;
965 else
967 hw_abort(me, "bad read size for timer 6 mode A/B register");
969 break;
971 default:
972 hw_abort(me, "bad read size for timer 6 register");
978 static unsigned
979 mn103tim_io_write_buffer (struct hw *me,
980 const void *source,
981 int space,
982 unsigned_word base,
983 unsigned nr_bytes)
985 struct mn103tim *timers = hw_data (me);
986 enum timer_register_types timer_reg;
988 HW_TRACE ((me, "write to 0x%08lx length %d with 0x%x", (long) base,
989 (int) nr_bytes, *(uint32_t *)source));
991 timer_reg = decode_addr (me, timers, base);
993 /* It can be either a mode register, a base register, a binary counter, */
994 /* or a special timer 6 register. Check in that order. */
995 if ( timer_reg <= LAST_MODE_REG )
997 if ( timer_reg == 6 )
999 write_tm6md(me, timers, base, source, nr_bytes);
1001 else
1003 write_mode_reg(me, timers, timer_reg-FIRST_MODE_REG,
1004 source, nr_bytes);
1007 else if ( timer_reg <= LAST_BASE_REG )
1009 write_base_reg(me, timers, timer_reg-FIRST_BASE_REG, source, nr_bytes);
1011 else if ( timer_reg <= LAST_COUNTER )
1013 hw_abort(me, "cannot write to counter");
1015 else if ( timer_reg <= LAST_TIMER_REG )
1017 write_special_timer6_reg(me, timers, timer_reg, source, nr_bytes);
1019 else
1021 hw_abort(me, "invalid reg type");
1024 return nr_bytes;
1028 const struct hw_descriptor dv_mn103tim_descriptor[] = {
1029 { "mn103tim", mn103tim_finish, },
1030 { NULL },