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. */
26 #include "sim-assert.h"
31 mn103tim - mn103002 timers (8 and 16 bit)
36 Implements the mn103002 8 and 16 bit timers as described in the mn103002 user guide.
41 reg = <8bit-timers-addr> <8bit-timers-size> <16bit-timers-addr> <16bit-timers-size>
49 /* The timers' register address blocks */
51 struct mn103tim_block
{
56 enum { TIMER8_BLOCK
, TIMER16_BLOCK
, NR_TIMER_BLOCKS
};
58 enum timer_register_types
{
60 TM0MD
= FIRST_MODE_REG
,
67 LAST_MODE_REG
= TM6MD
,
69 TM0BR
= FIRST_BASE_REG
,
75 LAST_BASE_REG
= TM5BR
,
77 TM0BC
= FIRST_COUNTER
,
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. */
99 typedef struct _mn10300_timer_regs
{
102 } mn10300_timer_regs
;
104 typedef struct _mn10300_timer
{
105 uint32_t div_ratio
, start
;
106 struct hw_event
*event
;
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 */
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
, },
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
;
169 attach_mn103tim_regs (struct hw
*me
,
170 struct mn103tim
*timers
)
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
;
179 unsigned attach_size
;
180 reg_property_spec reg
;
181 if (!hw_find_reg_array_property (me
, "reg", i
, ®
))
182 hw_abort (me
, "\"reg\" property must contain three addr/size entries");
183 hw_unit_address_to_attach_address (hw_parent (me
),
188 timers
->block
[i
].base
= attach_address
;
189 hw_unit_size_to_attach_size (hw_parent (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
,
201 mn103tim_finish (struct hw
*me
)
203 struct mn103tim
*timers
;
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;
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
;
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
;
277 hw_abort (me
, "bad address");
284 read_mode_reg (struct hw
*me
,
285 struct mn103tim
*timers
,
296 /* Accessing 1 byte is ok for all mode registers. */
299 *(uint8_t*)dest
= timers
->tm6md0
;
303 *(uint8_t*)dest
= timers
->reg
[timer_nr
].mode
;
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
;
320 hw_abort (me
, "bad read size of 2 bytes to TM%dMD.", timer_nr
);
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
;
335 hw_abort (me
, "bad read size of 4 bytes to TM%dMD.", timer_nr
);
340 hw_abort (me
, "bad read size of %d bytes to TM%dMD.",
347 read_base_reg (struct hw
*me
,
348 struct mn103tim
*timers
,
356 /* Check nr_bytes: accesses of 1, 2 and 4 bytes allowed depending on timer. */
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
;
368 if ( timer_nr
== 1 || timer_nr
== 3 )
370 hw_abort (me
, "bad read size of 2 bytes to TM%dBR.", timer_nr
);
374 if ( timer_nr
< NR_8BIT_TIMERS
)
376 val16
= (timers
->reg
[timer_nr
].base
<<8)
377 | timers
->reg
[timer_nr
+1].base
;
381 val16
= timers
->reg
[timer_nr
].base
;
383 *(uint16_t*)dest
= val16
;
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
;
401 hw_abort (me
, "bad read size of 4 bytes to TM%dBR.", timer_nr
);
406 hw_abort (me
, "bad read size must of %d bytes to TM%dBR.",
413 read_counter (struct hw
*me
,
414 struct mn103tim
*timers
,
421 if ( NULL
== timers
->timer
[timer_nr
].event
)
423 /* Timer is not counting, use value in base register. */
426 val
= 0; /* timer 6 is an up counter */
430 val
= timers
->reg
[timer_nr
].base
;
435 if ( timer_nr
== 6 ) /* timer 6 is an up counter. */
437 val
= hw_event_queue_time(me
) - timers
->timer
[timer_nr
].start
;
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
);
452 *(uint8_t *)dest
= val
;
456 *(uint16_t *)dest
= val
;
460 *(uint32_t *)dest
= val
;
464 hw_abort(me
, "bad read size for reading counter");
471 read_special_timer6_reg (struct hw
*me
,
472 struct mn103tim
*timers
,
480 switch ( timer_nr
) {
482 *(uint8_t *)dest
= timers
->tm6mda
;
486 *(uint8_t *)dest
= timers
->tm6mdb
;
490 *(uint8_t *)dest
= timers
->tm6ca
;
494 *(uint8_t *)dest
= timers
->tm6cb
;
504 if ( timer_nr
== TM6CA
)
506 *(uint16_t *)dest
= timers
->tm6ca
;
508 else if ( timer_nr
== TM6CB
)
510 *(uint16_t *)dest
= timers
->tm6cb
;
514 hw_abort(me
, "bad read size for timer 6 mode A/B register");
519 hw_abort(me
, "bad read size for timer 6 register");
526 mn103tim_io_read_buffer (struct hw
*me
,
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
);
559 hw_abort(me
, "invalid timer register address.");
567 do_counter_event (struct hw
*me
,
570 struct mn103tim
*timers
= hw_data(me
);
571 long timer_nr
= (uintptr_t) data
;
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
)
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
);
601 timers
->timer
[timer_nr
].event
= NULL
;
608 do_counter6_event (struct hw
*me
,
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
);
629 timers
->timer
[timer_nr
].event
= NULL
;
635 write_base_reg (struct hw
*me
,
636 struct mn103tim
*timers
,
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. */
654 /* Storing 1 byte is ok for all registers. */
655 timers
->reg
[timer_nr
].base
= buf8
[0];
659 if ( timer_nr
== 1 || timer_nr
== 3 )
661 hw_abort (me
, "bad write size of 2 bytes to TM%dBR.", timer_nr
);
665 if ( timer_nr
< NR_8BIT_TIMERS
)
667 timers
->reg
[timer_nr
].base
= buf8
[0];
668 timers
->reg
[timer_nr
+1].base
= buf8
[1];
672 timers
->reg
[timer_nr
].base
= buf16
[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];
692 hw_abort (me
, "bad write size of 4 bytes to TM%dBR.", timer_nr
);
697 hw_abort (me
, "bad write size must of %d bytes to TM%dBR.",
704 write_mode_reg (struct hw
*me
,
705 struct mn103tim
*timers
,
709 /* for timers 0 to 5 */
712 uint8_t mode_val
, next_mode_val
;
717 hw_abort (me
, "bad write size of %d bytes to TM%ldMD.", nr_bytes
,
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
);
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
)));
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
;
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
,
807 (void *)(uintptr_t)timer_nr
);
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
;
822 if ( (timers
->reg
[timer_nr
].mode
& clock_mask
) == clk_cascaded
)
824 ASSERT(timers
->timer
[timer_nr
].event
== NULL
);
833 write_tm6md (struct hw
*me
,
834 struct mn103tim
*timers
,
835 unsigned_word address
,
839 uint8_t mode_val0
= 0x00, mode_val1
= 0x00;
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 */
867 mode_val1
= *(uint8_t *)source
+1;
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
;
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
,
907 (void *)(uintptr_t)timer_nr
);
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
;
924 write_special_timer6_reg (struct hw
*me
,
925 struct mn103tim
*timers
,
933 switch ( timer_nr
) {
935 timers
->tm6mda
= *(uint8_t *)source
;
939 timers
->tm6mdb
= *(uint8_t *)source
;
943 timers
->tm6ca
= *(uint8_t *)source
;
947 timers
->tm6cb
= *(uint8_t *)source
;
957 if ( timer_nr
== TM6CA
)
959 timers
->tm6ca
= *(uint16_t *)source
;
961 else if ( timer_nr
== TM6CB
)
963 timers
->tm6cb
= *(uint16_t *)source
;
967 hw_abort(me
, "bad read size for timer 6 mode A/B register");
972 hw_abort(me
, "bad read size for timer 6 register");
979 mn103tim_io_write_buffer (struct hw
*me
,
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
);
1003 write_mode_reg(me
, timers
, timer_reg
-FIRST_MODE_REG
,
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
);
1021 hw_abort(me
, "invalid reg type");
1028 const struct hw_descriptor dv_mn103tim_descriptor
[] = {
1029 { "mn103tim", mn103tim_finish
, },