blob: 9877cefad1e7640dd27622410c04f882acdb37e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m68knommu/platform/68360/config.c
3 *
4 * Copyright (c) 2000 Michael Leslie <mleslie@lineo.com>
5 * Copyright (C) 1993 Hamish Macdonald
6 * Copyright (C) 1999 D. Jeff Dionne <jeff@uclinux.org>
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file COPYING in the main directory of this archive
10 * for more details.
11 */
12
13#include <stdarg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
15#include <linux/kernel.h>
16#include <linux/mm.h>
Greg Ungererb032fde2007-03-07 11:28:13 +100017#include <linux/interrupt.h>
Greg Ungereraa1f1d12007-07-27 01:09:00 +100018#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/machdep.h>
23#include <asm/m68360.h>
24
25#ifdef CONFIG_UCQUICC
26#include <asm/bootstd.h>
27#endif
28
29extern void m360_cpm_reset(void);
30
31// Mask to select if the PLL prescaler is enabled.
32#define MCU_PREEN ((unsigned short)(0x0001 << 13))
33
34#if defined(CONFIG_UCQUICC)
35#define OSCILLATOR (unsigned long int)33000000
36#endif
37
Greg Ungerer1b461d72012-05-23 13:32:55 +100038static irq_handler_t timer_interrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039unsigned long int system_clock;
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041extern QUICC *pquicc;
42
43/* TODO DON"T Hard Code this */
44/* calculate properly using the right PLL and prescaller */
45// unsigned int system_clock = 33000000l;
46extern unsigned long int system_clock; //In kernel setup.c
47
Greg Ungerer7e6a3d42007-10-24 12:03:25 +100048
49static irqreturn_t hw_tick(int irq, void *dummy)
50{
51 /* Reset Timer1 */
52 /* TSTAT &= 0; */
53
54 pquicc->timer_ter1 = 0x0002; /* clear timer event */
55
Greg Ungerer1b461d72012-05-23 13:32:55 +100056 return timer_interrupt(irq, dummy);
Greg Ungerer7e6a3d42007-10-24 12:03:25 +100057}
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Greg Ungereraa1f1d12007-07-27 01:09:00 +100059static struct irqaction m68360_timer_irq = {
Greg Ungerer7e6a3d42007-10-24 12:03:25 +100060 .name = "timer",
61 .flags = IRQF_DISABLED | IRQF_TIMER,
62 .handler = hw_tick,
Greg Ungereraa1f1d12007-07-27 01:09:00 +100063};
64
Greg Ungerer1b461d72012-05-23 13:32:55 +100065void hw_timer_init(irq_handler_t handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 unsigned char prescaler;
68 unsigned short tgcr_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#if 0
71 /* Restart mode, Enable int, 32KHz, Enable timer */
72 TCTL = TCTL_OM | TCTL_IRQEN | TCTL_CLKSOURCE_32KHZ | TCTL_TEN;
73 /* Set prescaler (Divide 32KHz by 32)*/
74 TPRER = 31;
75 /* Set compare register 32Khz / 32 / 10 = 100 */
76 TCMP = 10;
77
Greg Ungerer4531dab2011-02-08 21:40:11 +100078 request_irq(IRQ_MACHSPEC | 1, timer_routine, 0, "timer", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#endif
80
81 /* General purpose quicc timers: MC68360UM p7-20 */
82
83 /* Set up timer 1 (in [1..4]) to do 100Hz */
84 tgcr_save = pquicc->timer_tgcr & 0xfff0;
85 pquicc->timer_tgcr = tgcr_save; /* stop and reset timer 1 */
86 /* pquicc->timer_tgcr |= 0x4444; */ /* halt timers when FREEZE (ie bdm freeze) */
87
88 prescaler = 8;
89 pquicc->timer_tmr1 = 0x001a | /* or=1, frr=1, iclk=01b */
90 (unsigned short)((prescaler - 1) << 8);
91
92 pquicc->timer_tcn1 = 0x0000; /* initial count */
93 /* calculate interval for 100Hz based on the _system_clock: */
94 pquicc->timer_trr1 = (system_clock/ prescaler) / HZ; /* reference count */
95
96 pquicc->timer_ter1 = 0x0003; /* clear timer events */
97
Greg Ungerer1b461d72012-05-23 13:32:55 +100098 timer_interrupt = handler;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* enable timer 1 interrupt in CIMR */
Greg Ungereraa1f1d12007-07-27 01:09:00 +1000101 setup_irq(CPMVEC_TIMER1, &m68360_timer_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /* Start timer 1: */
104 tgcr_save = (pquicc->timer_tgcr & 0xfff0) | 0x0001;
105 pquicc->timer_tgcr = tgcr_save;
106}
107
Greg Ungerer7e6a3d42007-10-24 12:03:25 +1000108int BSP_set_clock_mmss(unsigned long nowtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110#if 0
111 short real_seconds = nowtime % 60, real_minutes = (nowtime / 60) % 60;
112
113 tod->second1 = real_seconds / 10;
114 tod->second2 = real_seconds % 10;
115 tod->minute1 = real_minutes / 10;
116 tod->minute2 = real_minutes % 10;
117#endif
118 return 0;
119}
120
121void BSP_reset (void)
122{
123 local_irq_disable();
Greg Ungererbda65832006-06-28 16:21:38 +1000124 asm volatile (
125 "moveal #_start, %a0;\n"
126 "moveb #0, 0xFFFFF300;\n"
127 "moveal 0(%a0), %sp;\n"
128 "moveal 4(%a0), %a0;\n"
129 "jmp (%a0);\n"
130 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133unsigned char *scc1_hwaddr;
134static int errno;
135
136#if defined (CONFIG_UCQUICC)
137_bsc0(char *, getserialnum)
138_bsc1(unsigned char *, gethwaddr, int, a)
139_bsc1(char *, getbenv, char *, a)
140#endif
141
142
143void config_BSP(char *command, int len)
144{
145 unsigned char *p;
146
147 m360_cpm_reset();
148
149 /* Calculate the real system clock value. */
150 {
151 unsigned int local_pllcr = (unsigned int)(pquicc->sim_pllcr);
152 if( local_pllcr & MCU_PREEN ) // If the prescaler is dividing by 128
153 {
154 int mf = (int)(pquicc->sim_pllcr & 0x0fff);
155 system_clock = (OSCILLATOR / 128) * (mf + 1);
156 }
157 else
158 {
159 int mf = (int)(pquicc->sim_pllcr & 0x0fff);
160 system_clock = (OSCILLATOR) * (mf + 1);
161 }
162 }
163
164 printk(KERN_INFO "\n68360 QUICC support (C) 2000 Lineo Inc.\n");
165
166#if defined(CONFIG_UCQUICC) && 0
167 printk(KERN_INFO "uCquicc serial string [%s]\n",getserialnum());
168 p = scc1_hwaddr = gethwaddr(0);
169 printk(KERN_INFO "uCquicc hwaddr %.2x:%.2x:%.2x:%.2x:%.2x:%.2x\n",
170 p[0], p[1], p[2], p[3], p[4], p[5]);
171
172 p = getbenv("APPEND");
173 if (p)
174 strcpy(p,command);
175 else
176 command[0] = 0;
177#else
178 scc1_hwaddr = "\00\01\02\03\04\05";
179#endif
180
Greg Ungerer95177462012-01-23 13:25:56 +1000181 mach_reset = BSP_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}