Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | /* * arch/mips/pmc-sierra/yosemite/setup.c * * Copyright (C) 2003 PMC-Sierra Inc. * Author: Manish Lachwani (lachwani@pmc-sierra.com) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <linux/init.h> #include <linux/kernel.h> #include <linux/types.h> #include <linux/mc146818rtc.h> #include <linux/mm.h> #include <linux/swap.h> #include <linux/ioport.h> #include <linux/sched.h> #include <linux/interrupt.h> #include <linux/pci.h> #include <linux/timex.h> #include <linux/vmalloc.h> #include <asm/time.h> #include <asm/bootinfo.h> #include <asm/page.h> #include <asm/bootinfo.h> #include <asm/io.h> #include <asm/irq.h> #include <asm/processor.h> #include <asm/ptrace.h> #include <asm/reboot.h> #include <linux/version.h> #include <linux/bootmem.h> #include <linux/blk.h> #include "setup.h" unsigned long cpu_clock; unsigned long yosemite_base; void __init bus_error_init(void) { /* Do nothing */ } unsigned long m48t37y_get_time(void) { unsigned char *rtc_base = YOSEMITE_RTC_BASE; unsigned int year, month, day, hour, min, sec; /* Stop the update to the time */ rtc_base[0x7ff8] = 0x40; year = CONV_BCD_TO_BIN(rtc_base[0x7fff]); year += CONV_BCD_TO_BIN(rtc_base[0x7fff1]) * 100; month = CONV_BCD_TO_BIN(rtc_base[0x7ffe]); day = CONV_BCD_TO_BIN(rtc_base[0x7ffd]); hour = CONV_BCD_TO_BIN(rtc_base[0x7ffb]); min = CONV_BCD_TO_BIN(rtc_base[0x7ffa]); sec = CONV_BCD_TO_BIN(rtc_base[0x7ff9]); /* Start the update to the time again */ rtc_base[0x7ff8] = 0x00; return mktime(year, month, day, hour, min, sec); } int m48t37y_set_time(unsigned long sec) { unsigned char *rtc_base = YOSEMITE_RTC_BASE; unsigned int year, month, day, hour, min, sec; struct rtc_time tm; /* convert to a more useful format -- note months count from 0 */ to_tm(sec, &tm); tm.tm_mon += 1; /* enable writing */ rtc_base[0x7ff8] = 0x80; /* year */ rtc_base[0x7fff] = CONV_BIN_TO_BCD(tm.tm_year % 100); rtc_base[0x7ff1] = CONV_BIN_TO_BCD(tm.tm_year / 100); /* month */ rtc_base[0x7ffe] = CONV_BIN_TO_BCD(tm.tm_mon); /* day */ rtc_base[0x7ffd] = CONV_BIN_TO_BCD(tm.tm_mday); /* hour/min/sec */ rtc_base[0x7ffb] = CONV_BIN_TO_BCD(tm.tm_hour); rtc_base[0x7ffa] = CONV_BIN_TO_BCD(tm.tm_min); rtc_base[0x7ff9] = CONV_BIN_TO_BCD(tm.tm_sec); /* day of week -- not really used, but let's keep it up-to-date */ rtc_base[0x7ffc] = CONV_BIN_TO_BCD(tm.tm_wday + 1); /* disable writing */ rtc_base[0x7ff8] = 0x00; return 0; } void yosemite_timer_setup(struct irqaction *irq) { setup_irq(6, irq); } void yosemite_time_init(void) { mips_counter_frequency = cpu_clock / 2; board_timer_setup = yosemite_timer_setup; rtc_get_time = m48t37y_get_time; rtc_set_time = m48t37y_set_time; } static int __init pmc_yosemite_setup(void) { unsigned long val = 0; printk("PMC-Sierra Yosemite Board Setup \n"); board_time_init = yosemite_time_init; /* Add memory regions */ add_memory_region(0x00000000, 0x10000000, BOOT_MEM_RAM); add_memory_region(0x10000000, 0x10000000, BOOT_MEM_RAM); /* Setup the HT controller */ val = *(volatile u_int32_t *)(HYPERTRANSPORT_CONFIG_REG); val |= HYPERTRANSPORT_ENABLE; *(volatile u_int32_t *)(HYPERTRANSPORT_CONFIG_REG) = val; /* Set the BAR. Shifted mode */ *(volatile u_int32_t *)(HYPERTRANSPORT_BAR0_REG) = HYPERTRANSPORT_BAR0_ADDR; *(volatile u_int32_t *)(HYPERTRANSPORT_SIZE0_REG) = HYPERTRANSPORT_SIZE0; #ifdef CONFIG_PCI ioport_resource.start = 0xe0000000; ioport_resource.end = 0xe0000000 + 0x20000000 - 1; iomem_resource.start = 0xc0000000; iomem_resource.end = 0xc0000000 + 0x20000000 - 1; pci_scan_bus(0, &titan_pci_ops, NULL); #endif return 0; } early_initcall(pmc_yosemite_setup); |