blob: b65fe4eed38e59b214eca3c4a79d0367a192e8a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Greg Ungerer6f4a8852014-08-21 22:10:31 +10002 * config.c - non-mmu 68360 platform initialization code
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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>
Geert Uytterhoevendf592eb2013-06-30 11:58:40 +020014#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/kernel.h>
17#include <linux/mm.h>
Greg Ungererb032fde2007-03-07 11:28:13 +100018#include <linux/interrupt.h>
Greg Ungereraa1f1d12007-07-27 01:09:00 +100019#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/machdep.h>
24#include <asm/m68360.h>
25
26#ifdef CONFIG_UCQUICC
27#include <asm/bootstd.h>
28#endif
29
30extern void m360_cpm_reset(void);
31
32// Mask to select if the PLL prescaler is enabled.
33#define MCU_PREEN ((unsigned short)(0x0001 << 13))
34
35#if defined(CONFIG_UCQUICC)
36#define OSCILLATOR (unsigned long int)33000000
37#endif
38
Greg Ungerer1b461d72012-05-23 13:32:55 +100039static irq_handler_t timer_interrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040unsigned long int system_clock;
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern QUICC *pquicc;
43
44/* TODO DON"T Hard Code this */
45/* calculate properly using the right PLL and prescaller */
46// unsigned int system_clock = 33000000l;
47extern unsigned long int system_clock; //In kernel setup.c
48
Greg Ungerer7e6a3d42007-10-24 12:03:25 +100049
50static irqreturn_t hw_tick(int irq, void *dummy)
51{
52 /* Reset Timer1 */
53 /* TSTAT &= 0; */
54
55 pquicc->timer_ter1 = 0x0002; /* clear timer event */
56
Greg Ungerer1b461d72012-05-23 13:32:55 +100057 return timer_interrupt(irq, dummy);
Greg Ungerer7e6a3d42007-10-24 12:03:25 +100058}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Greg Ungereraa1f1d12007-07-27 01:09:00 +100060static struct irqaction m68360_timer_irq = {
Greg Ungerer7e6a3d42007-10-24 12:03:25 +100061 .name = "timer",
Michael Opdenacker77a42792013-09-07 07:43:08 +020062 .flags = IRQF_TIMER,
Greg Ungerer7e6a3d42007-10-24 12:03:25 +100063 .handler = hw_tick,
Greg Ungereraa1f1d12007-07-27 01:09:00 +100064};
65
Greg Ungerer1b461d72012-05-23 13:32:55 +100066void hw_timer_init(irq_handler_t handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 unsigned char prescaler;
69 unsigned short tgcr_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#if 0
72 /* Restart mode, Enable int, 32KHz, Enable timer */
73 TCTL = TCTL_OM | TCTL_IRQEN | TCTL_CLKSOURCE_32KHZ | TCTL_TEN;
74 /* Set prescaler (Divide 32KHz by 32)*/
75 TPRER = 31;
76 /* Set compare register 32Khz / 32 / 10 = 100 */
77 TCMP = 10;
78
Greg Ungerer4531dab2011-02-08 21:40:11 +100079 request_irq(IRQ_MACHSPEC | 1, timer_routine, 0, "timer", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#endif
81
82 /* General purpose quicc timers: MC68360UM p7-20 */
83
84 /* Set up timer 1 (in [1..4]) to do 100Hz */
85 tgcr_save = pquicc->timer_tgcr & 0xfff0;
86 pquicc->timer_tgcr = tgcr_save; /* stop and reset timer 1 */
87 /* pquicc->timer_tgcr |= 0x4444; */ /* halt timers when FREEZE (ie bdm freeze) */
88
89 prescaler = 8;
90 pquicc->timer_tmr1 = 0x001a | /* or=1, frr=1, iclk=01b */
91 (unsigned short)((prescaler - 1) << 8);
92
93 pquicc->timer_tcn1 = 0x0000; /* initial count */
94 /* calculate interval for 100Hz based on the _system_clock: */
95 pquicc->timer_trr1 = (system_clock/ prescaler) / HZ; /* reference count */
96
97 pquicc->timer_ter1 = 0x0003; /* clear timer events */
98
Greg Ungerer1b461d72012-05-23 13:32:55 +100099 timer_interrupt = handler;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* enable timer 1 interrupt in CIMR */
Greg Ungereraa1f1d12007-07-27 01:09:00 +1000102 setup_irq(CPMVEC_TIMER1, &m68360_timer_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /* Start timer 1: */
105 tgcr_save = (pquicc->timer_tgcr & 0xfff0) | 0x0001;
106 pquicc->timer_tgcr = tgcr_save;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109void BSP_reset (void)
110{
111 local_irq_disable();
Greg Ungererbda65832006-06-28 16:21:38 +1000112 asm volatile (
113 "moveal #_start, %a0;\n"
114 "moveb #0, 0xFFFFF300;\n"
115 "moveal 0(%a0), %sp;\n"
116 "moveal 4(%a0), %a0;\n"
117 "jmp (%a0);\n"
118 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121unsigned char *scc1_hwaddr;
122static int errno;
123
124#if defined (CONFIG_UCQUICC)
125_bsc0(char *, getserialnum)
126_bsc1(unsigned char *, gethwaddr, int, a)
127_bsc1(char *, getbenv, char *, a)
128#endif
129
130
Geert Uytterhoevendf592eb2013-06-30 11:58:40 +0200131void __init config_BSP(char *command, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 unsigned char *p;
134
135 m360_cpm_reset();
136
137 /* Calculate the real system clock value. */
138 {
139 unsigned int local_pllcr = (unsigned int)(pquicc->sim_pllcr);
140 if( local_pllcr & MCU_PREEN ) // If the prescaler is dividing by 128
141 {
142 int mf = (int)(pquicc->sim_pllcr & 0x0fff);
143 system_clock = (OSCILLATOR / 128) * (mf + 1);
144 }
145 else
146 {
147 int mf = (int)(pquicc->sim_pllcr & 0x0fff);
148 system_clock = (OSCILLATOR) * (mf + 1);
149 }
150 }
151
152 printk(KERN_INFO "\n68360 QUICC support (C) 2000 Lineo Inc.\n");
153
154#if defined(CONFIG_UCQUICC) && 0
155 printk(KERN_INFO "uCquicc serial string [%s]\n",getserialnum());
156 p = scc1_hwaddr = gethwaddr(0);
Joe Perches73cb9dc2015-06-14 19:01:37 -0700157 printk(KERN_INFO "uCquicc hwaddr %pM\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 p = getbenv("APPEND");
160 if (p)
161 strcpy(p,command);
162 else
163 command[0] = 0;
164#else
165 scc1_hwaddr = "\00\01\02\03\04\05";
166#endif
167
Greg Ungerer95177462012-01-23 13:25:56 +1000168 mach_reset = BSP_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}