2 * Copyright (C) 2004 Peng Liu <peng.liu@infineon.com>
3 * Copyright (C) 2007 John Crispin <blogic@openwrt.org>
4 * Copyright (C) 2007 Felix Fietkau <nbd@openwrt.org>
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 2 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, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22 #include <linux/init.h>
23 #include <linux/sched.h>
24 #include <linux/module.h>
25 #include <linux/interrupt.h>
26 #include <linux/delay.h>
28 #include <asm/reboot.h>
29 #include <asm/system.h>
32 #include <asm/bootinfo.h>
34 #include <asm/mipsregs.h>
35 #include <asm/amazon/amazon.h>
36 #include <asm/amazon/irq.h>
37 #include <asm/amazon/model.h>
39 extern void prom_printf(const char * fmt
, ...);
40 static void amazon_reboot_setup(void);
42 /* the CPU clock rate - lifted from u-boot */
43 unsigned int amazon_get_cpu_hz(void)
45 /*-----------------------------------*/
46 /**CGU CPU Clock Reduction Register***/
47 /*-----------------------------------*/
48 switch(amazon_readl(AMAZON_CGU_CPUCRD
) & 0x3){
50 /*divider ration 1/1, 235 MHz clock */
53 /*divider ration 2/3, 235 MHz clock, clock not accurate, here */
56 /*divider ration 1/2, 235 MHz clock */
59 /*divider ration 1/4, 235 MHz clock */
64 /* the FPI clock rate - lifted from u-boot */
65 unsigned int amazon_get_fpi_hz(void)
68 clkCPU
= amazon_get_cpu_hz();
70 /*-------------------------------------*/
71 /***CGU Clock Divider Select Register***/
72 /*-------------------------------------*/
73 switch (amazon_readl(AMAZON_CGU_DIV
) & 0x3)
81 /* '11' is reserved */
85 /* this doesn't really belong here, but it's a convenient location */
86 unsigned int amazon_get_cpu_ver(void)
88 static unsigned int cpu_ver
= 0;
90 cpu_ver
= amazon_readl(AMAZON_MCD_CHIPID
) & 0xFFFFF000;
94 void amazon_time_init(void)
96 mips_hpt_frequency
= amazon_get_cpu_hz()/2;
97 printk("mips_hpt_frequency:%d\n", mips_hpt_frequency
);
100 extern int hr_time_resolution
;
102 /* ISR GPTU Timer 6 for high resolution timer */
103 static void amazon_timer6_interrupt(int irq
, void *dev_id
)
105 timer_interrupt(AMAZON_TIMER6_INT
, NULL
);
108 static struct irqaction hrt_irqaction
= {
109 .handler
= amazon_timer6_interrupt
,
110 .flags
= SA_INTERRUPT
,
115 * THe CPU counter for System timer, set to HZ
116 * GPTU Timer 6 for high resolution timer, set to hr_time_resolution
117 * Also misuse this routine to print out the CPU type and clock.
119 void __init
plat_timer_setup(struct irqaction
*irq
)
121 /* cpu counter for timer interrupts */
122 setup_irq(MIPS_CPU_TIMER_IRQ
, irq
);
124 /* enable the timer in the PMU */
125 amazon_writel(amazon_readl(AMAZON_PMU_PWDCR
)| AMAZON_PMU_PWDCR_GPT
|AMAZON_PMU_PWDCR_FPI
, AMAZON_PMU_PWDCR
);
127 /* setup the GPTU for timer tick f_fpi == f_gptu*/
128 amazon_writel(0x0100, AMAZON_GPTU_CLC
);
129 amazon_writel(0xffff, AMAZON_GPTU_CAPREL
);
130 amazon_writel(0x80C0, AMAZON_GPTU_T6CON
);
133 void __init
plat_mem_setup(void)
138 chipid
= amazon_readl(AMAZON_MCD_CHIPID
);
139 part_no
= AMAZON_MCD_CHIPID_PART_NUMBER_GET(chipid
);
141 if(part_no
== AMAZON_CHIPID_YANGTSE
){
142 prom_printf("Yangtse Version\n");
143 } else if (part_no
== AMAZON_CHIPID_STANDARD
) {
144 prom_printf(SYSTEM_MODEL_NAME
"\n");
146 prom_printf("unknown version %8x\n",part_no
);
149 amazon_reboot_setup();
150 board_time_init
= amazon_time_init
;
152 //stop reset TPE and DFE
153 amazon_writel(0, AMAZON_RST_REQ
);
155 amazon_writel(0x3fff, AMAZON_PMU_PWDCR
);
156 //reenable trace capability
157 part_no
= readl(AMAZON_BCU_ECON
);
160 static void amazon_machine_restart(char *command
)
163 amazon_writel(AMAZON_RST_ALL
, AMAZON_RST_REQ
);
167 static void amazon_machine_halt(void)
169 printk(KERN_NOTICE
"System halted.\n");
174 static void amazon_machine_power_off(void)
176 printk(KERN_NOTICE
"Please turn off the power now.\n");
181 static void amazon_reboot_setup(void)
183 _machine_restart
= amazon_machine_restart
;
184 _machine_halt
= amazon_machine_halt
;
185 pm_power_off
= amazon_machine_power_off
;
This page took 0.049679 seconds and 5 git commands to generate.