source: rtems/bsps/powerpc/shared/clock/clock-ppc403.c @ bb99cd0d

5
Last change on this file since bb99cd0d was bb99cd0d, checked in by Sebastian Huber <sebastian.huber@…>, on 12/05/19 at 18:22:33

clock: Simplify driver initialization

Use a system initialization handler instead of a legacy IO driver.

Update #3834.

  • Property mode set to 100644
File size: 7.7 KB
RevLine 
[16a8616]1/**
2 *  @file
[3235ad9]3 *
4 *  This routine initializes the interval timer on the
[16a8616]5 *  PowerPC 403 CPU.  The tick frequency is specified by the BSP.
6 */
7
8/*
9 *  Original PPC403 Code from:
[e57b0e2]10 *  Author: Andrew Bray <andy@i-cubed.co.uk>
[3235ad9]11 *  COPYRIGHT (c) 1995 by i-cubed ltd.
12 *
[16a8616]13 *  Modifications for PPC405GP by Dennis Ehlin
14 *
[3235ad9]15 *  To anyone who acknowledges that this file is provided "AS IS"
16 *  without any express or implied warranty:
17 *      permission to use, copy, modify, and distribute this file
18 *      for any purpose is hereby granted without fee, provided that
19 *      the above copyright notice and this notice appears in all
20 *      copies, and that the name of i-cubed limited not be used in
21 *      advertising or publicity pertaining to distribution of the
22 *      software without specific, written prior permission.
23 *      i-cubed limited makes no representations about the suitability
24 *      of this software for any purpose.
25 *
[aecfa2b]26 *  Modifications for deriving timer clock from cpu system clock by
27 *              Thomas Doerfler <td@imd.m.isar.de>
28 *  for these modifications:
29 *  COPYRIGHT (c) 1997 by IMD, Puchheim, Germany.
30 *
[16a8616]31 *  COPYRIGHT (c) 1989-2012.
[3235ad9]32 *  On-Line Applications Research Corporation (OAR).
33 *
[98e4ebf5]34 *  The license and distribution terms for this file may be
35 *  found in the file LICENSE in this distribution or at
[c499856]36 *  http://www.rtems.org/license/LICENSE.
[3235ad9]37 */
38
[f817b02]39#include <rtems.h>
[11c2382]40#include <rtems/clockdrv.h>
[3a4ae6c]41#include <rtems/libio.h>
[3235ad9]42#include <stdlib.h>                     /* for atexit() */
[73cdeb6]43#include <rtems/bspIo.h>
[e1df032]44#include <rtems/powerpc/powerpc.h>
[b7d1f290]45
[73cdeb6]46/*
47 * check, which exception handling code is present
48 */
[b7d1f290]49
50#include <bsp.h>
51
52#include <bsp/vectors.h>
[73cdeb6]53#include <bsp/irq.h>
[fbd06a09]54
[84b19b5]55extern uint32_t   bsp_clicks_per_usec;
[3235ad9]56
[84b19b5]57volatile uint32_t Clock_driver_ticks;
[66c373bf]58static uint32_t   pit_value, tick_time;
[84b19b5]59static bool       auto_restart;
[3235ad9]60
[a6b2080]61static void Clock_exit( void );
[359e537]62
[84b19b5]63static inline uint32_t get_itimer(void)
[3235ad9]64{
[84b19b5]65  register uint32_t rc;
[3235ad9]66
[e9ae97fb]67#ifndef ppc405 /* this is a ppc403 */
[16a8616]68  __asm__ volatile ("mfspr %0, 0x3dd" : "=r" ((rc))); /* TBLO */
[e9ae97fb]69#else /* ppc405 */
[16a8616]70  __asm__ volatile ("mfspr %0, 0x10c" : "=r" ((rc))); /* 405GP TBL */
[e9ae97fb]71#endif /* ppc405 */
[3235ad9]72
[16a8616]73  return rc;
[3a4ae6c]74}
75
76/*
77 *  ISR Handler
78 */
[84b19b5]79static void Clock_isr(void* handle)
[3235ad9]80{
[84b19b5]81  uint32_t clicks_til_next_interrupt;
[b7d1f290]82#if defined(BSP_PPC403_CLOCK_ISR_IRQ_LEVEL)
[84b19b5]83  uint32_t l_orig = _ISR_Get_level();
[16a8616]84#endif
85
86  if (!auto_restart) {
[84b19b5]87    uint32_t itimer_value;
[16a8616]88    /*
89     * setup for next interrupt; making sure the new value is reasonably
90     * in the future.... in case we lost out on an interrupt somehow
91     */
92    itimer_value = get_itimer();
93    tick_time += pit_value;
94
95    /*
96     * how far away is next interrupt *really*
97     * It may be a long time; this subtraction works even if
98     * Clock_clicks_interrupt < Clock_clicks_low_order via
99     * the miracle of unsigned math.
100     */
101    clicks_til_next_interrupt = tick_time - itimer_value;
102
103    /*
104     * If it is too soon then bump it up.
105     * This should only happen if CPU_HPPA_CLICKS_PER_TICK is too small.
106     * But setting it low is useful for debug, so...
107     */
108    if (clicks_til_next_interrupt < 400) {
109      tick_time = itimer_value + 1000;
110      clicks_til_next_interrupt = 1000;
111      /* XXX: count these! this should be rare */
112    }
113
114    /*
115     * If it is too late, that means we missed the interrupt somehow.
116     * Rather than wait 35-50s for a wrap, we just fudge it here.
117     */
118    if (clicks_til_next_interrupt > pit_value) {
119      tick_time = itimer_value + 1000;
120      clicks_til_next_interrupt = 1000;
121      /* XXX: count these! this should never happen :-) */
122    }
123
124    __asm__ volatile ("mtspr 0x3db, %0" :: "r"
[84b19b5]125                      (clicks_til_next_interrupt));                  /* PIT */
[e57b0e2]126  }
[359e537]127
[84b19b5]128  __asm__ volatile ("mtspr 0x3d8, %0" :: "r" (0x08000000));          /* TSR */
[359e537]129
[16a8616]130  Clock_driver_ticks++;
[359e537]131
[16a8616]132  /* Give BSP a chance to say if they want to re-enable interrupts */
[b7d1f290]133#if defined(BSP_PPC403_CLOCK_ISR_IRQ_LEVEL)
[16a8616]134  _ISR_Set_level(BSP_PPC403_CLOCK_ISR_IRQ_LEVEL);
[b7d1f290]135#endif
[16a8616]136  rtems_clock_tick();
[b7d1f290]137
138#if defined(BSP_PPC403_CLOCK_ISR_IRQ_LEVEL)
[16a8616]139  _ISR_Set_level(l_orig)
[b7d1f290]140#endif
[3235ad9]141}
142
[84b19b5]143static int ClockIsOn(const rtems_irq_connect_data* unused)
[73cdeb6]144{
[84b19b5]145  register uint32_t tcr;
[359e537]146
[84b19b5]147  __asm__ volatile ("mfspr %0, 0x3da" : "=r" ((tcr)));               /* TCR */
[359e537]148
[16a8616]149  return (tcr & 0x04000000) != 0;
[73cdeb6]150}
151
[84b19b5]152static void ClockOff(const rtems_irq_connect_data* unused)
[73cdeb6]153{
[84b19b5]154  register uint32_t tcr;
[16a8616]155
[84b19b5]156  __asm__ volatile ("mfspr %0, 0x3da" : "=r" ((tcr)));               /* TCR */
[16a8616]157  tcr &= ~ 0x04400000;
158  __asm__ volatile ("mtspr 0x3da, %0" : "=r" ((tcr)) : "0" ((tcr))); /* TCR */
[73cdeb6]159}
160
[84b19b5]161static void ClockOn(const rtems_irq_connect_data* unused)
[3235ad9]162{
[84b19b5]163  uint32_t          iocr;
164  register uint32_t tcr;
165#ifndef ppc405
166  uint32_t          pvr;
[e9ae97fb]167#endif /* ppc403 */
[359e537]168
[16a8616]169  Clock_driver_ticks = 0;
[359e537]170
[84b19b5]171#ifndef ppc405 /* this is a ppc403 */
172  __asm__ volatile ("mfdcr %0, 0xa0" : "=r" (iocr));              /* IOCR */
[f3a51d62]173  iocr &= ~4;                         /* timer clocked from system clock */
[16a8616]174  __asm__ volatile ("mtdcr 0xa0, %0" : "=r" (iocr) : "0" (iocr)); /* IOCR */
[359e537]175
[16a8616]176  __asm__ volatile ("mfspr %0, 0x11f" : "=r" ((pvr))); /* PVR */
177  if (((pvr & 0xffff0000) >> 16) != 0x0020)
[84b19b5]178    return;                             /* Not a ppc403 */
[359e537]179
[84b19b5]180  if ((pvr & 0xff00) == 0x0000)         /* 403GA */
[aecfa2b]181#if 0 /* FIXME: in which processor versions will "autoload" work properly? */
[84b19b5]182    auto_restart = (pvr & 0x00f0) > 0x0000 ? true : false;
[359e537]183#else
[84b19b5]184    /* no known chip version supports auto restart of timer... */
185    auto_restart = false;
[aecfa2b]186#endif
[84b19b5]187  else if ((pvr & 0xff00) == 0x0100)    /* 403GB */
188    auto_restart = true;
[16a8616]189
[84b19b5]190#else /* ppc405 */
191  __asm__ volatile ("mfdcr %0, 0x0b2" : "=r" (iocr));              /*405GP CPC0_CR1 */
[f3a51d62]192  iocr &=~0x800000;               /* timer clocked from system clock CETE*/
[84b19b5]193  __asm__ volatile ("mtdcr 0x0b2, %0" : "=r" (iocr) : "0" (iocr)); /* 405GP CPC0_CR1 */
[73cdeb6]194
[16a8616]195  /*
196   * Enable auto restart
197   */
198  auto_restart = true;
[84b19b5]199#endif /* ppc405 */
200
[16a8616]201  pit_value = rtems_configuration_get_microseconds_per_tick() *
202                bsp_clicks_per_usec;
203
204  /*
205   * Set PIT value
206   */
207  __asm__ volatile ("mtspr 0x3db, %0" : : "r" (pit_value)); /* PIT */
[0dd1d44]208
[84b19b5]209  /*
210   * Set timer to autoreload, bit TCR->ARE = 1  0x0400000
211   * Enable PIT interrupt,    bit TCR->PIE = 1  0x4000000
212   */
[16a8616]213  tick_time = get_itimer() + pit_value;
214
[84b19b5]215  __asm__ volatile ("mfspr %0, 0x3da" : "=r" ((tcr)));               /* TCR */
[16a8616]216  tcr = (tcr & ~0x04400000) | (auto_restart ? 0x04400000 : 0x04000000);
[84b19b5]217#if 1
[16a8616]218  __asm__ volatile ("mtspr 0x3da, %0" : "=r" ((tcr)) : "0" ((tcr))); /* TCR */
219#endif
[3235ad9]220}
221
[5039d92]222static void Install_clock(void (*clock_isr)(void *))
[3235ad9]223{
[16a8616]224  rtems_irq_connect_data clockIrqConnData;
[fbd06a09]225
[16a8616]226  Clock_driver_ticks = 0;
[359e537]227
[16a8616]228  /*
229   * initialize the interval here
230   * First tick is set to right amount of time in the future
231   * Future ticks will be incremented over last value set
232   * in order to provide consistent clicks in the face of
233   * interrupt overhead
234   */
235  clockIrqConnData.on   = ClockOn;
236  clockIrqConnData.off  = ClockOff;
237  clockIrqConnData.isOn = ClockIsOn;
238  clockIrqConnData.name = BSP_PIT;
239  clockIrqConnData.hdl  = clock_isr;
240  if (!BSP_install_rtems_irq_handler (&clockIrqConnData)) {
241    printk("Unable to connect Clock Irq handler\n");
242    rtems_fatal_error_occurred(1);
243  }
[73cdeb6]244
[16a8616]245  atexit(Clock_exit);
[73cdeb6]246}
[3235ad9]247
248/*
249 * Called via atexit()
250 * Remove the clock interrupt handler by setting handler to NULL
[e9ae97fb]251 *
[359e537]252 * This will not work on the 405GP because
253 * when bit's are set in TCR they can only be unset by a reset
[3235ad9]254 */
[73cdeb6]255void Clock_exit(void)
[3235ad9]256{
[fbd06a09]257  rtems_irq_connect_data clockIrqConnData;
[359e537]258
[fbd06a09]259  clockIrqConnData.name = BSP_PIT;
260  if (!BSP_get_current_rtems_irq_handler(&clockIrqConnData)) {
261    printk("Unable to stop system clock\n");
262    rtems_fatal_error_occurred(1);
263  }
[359e537]264
[fbd06a09]265  BSP_remove_rtems_irq_handler (&clockIrqConnData);
[3235ad9]266}
267
[bb99cd0d]268void _Clock_Initialize( void )
[3a4ae6c]269{
270  Install_clock( Clock_isr );
271}
Note: See TracBrowser for help on using the repository browser.