Rev 2055 | Rev 2089 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 640 | jermar | 1 | /* |
| 2071 | jermar | 2 | * Copyright (c) 2005 Jakub Jermar |
| 640 | jermar | 3 | * All rights reserved. |
| 4 | * |
||
| 5 | * Redistribution and use in source and binary forms, with or without |
||
| 6 | * modification, are permitted provided that the following conditions |
||
| 7 | * are met: |
||
| 8 | * |
||
| 9 | * - Redistributions of source code must retain the above copyright |
||
| 10 | * notice, this list of conditions and the following disclaimer. |
||
| 11 | * - Redistributions in binary form must reproduce the above copyright |
||
| 12 | * notice, this list of conditions and the following disclaimer in the |
||
| 13 | * documentation and/or other materials provided with the distribution. |
||
| 14 | * - The name of the author may not be used to endorse or promote products |
||
| 15 | * derived from this software without specific prior written permission. |
||
| 16 | * |
||
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 27 | */ |
||
| 28 | |||
| 1731 | jermar | 29 | /** @addtogroup sparc64 |
| 1702 | cejka | 30 | * @{ |
| 31 | */ |
||
| 32 | /** @file |
||
| 33 | */ |
||
| 34 | |||
| 1881 | jermar | 35 | #include <arch/asm.h> |
| 640 | jermar | 36 | #include <cpu.h> |
| 37 | #include <arch.h> |
||
| 1899 | jermar | 38 | #include <print.h> |
| 640 | jermar | 39 | #include <arch/register.h> |
| 1899 | jermar | 40 | #include <genarch/ofw/ofw_tree.h> |
| 41 | #include <arch/types.h> |
||
| 42 | #include <arch/drivers/tick.h> |
||
| 640 | jermar | 43 | |
| 2049 | jermar | 44 | /** Perform sparc64 specific initialization of the processor structure for the |
| 45 | * current processor. |
||
| 46 | */ |
||
| 640 | jermar | 47 | void cpu_arch_init(void) |
| 48 | { |
||
| 1899 | jermar | 49 | ofw_tree_node_t *node; |
| 50 | uint32_t mid; |
||
| 51 | uint32_t clock_frequency = 0; |
||
| 52 | upa_config_t upa_config; |
||
| 53 | |||
| 54 | upa_config.value = upa_config_read(); |
||
| 1903 | jermar | 55 | CPU->arch.mid = upa_config.mid; |
| 56 | |||
| 1917 | jermar | 57 | /* |
| 58 | * Detect processor frequency. |
||
| 59 | */ |
||
| 1899 | jermar | 60 | node = ofw_tree_find_child_by_device_type(ofw_tree_lookup("/"), "cpu"); |
| 61 | while (node) { |
||
| 62 | ofw_tree_property_t *prop; |
||
| 63 | |||
| 64 | prop = ofw_tree_getprop(node, "upa-portid"); |
||
| 65 | if (prop && prop->value) { |
||
| 66 | mid = *((uint32_t *) prop->value); |
||
| 1903 | jermar | 67 | if (mid == CPU->arch.mid) { |
| 2049 | jermar | 68 | prop = ofw_tree_getprop(node, |
| 69 | "clock-frequency"); |
||
| 1899 | jermar | 70 | if (prop && prop->value) |
| 2049 | jermar | 71 | clock_frequency = *((uint32_t *) |
| 72 | prop->value); |
||
| 1899 | jermar | 73 | } |
| 74 | } |
||
| 75 | node = ofw_tree_find_peer_by_device_type(node, "cpu"); |
||
| 76 | } |
||
| 77 | |||
| 78 | CPU->arch.clock_frequency = clock_frequency; |
||
| 79 | tick_init(); |
||
| 640 | jermar | 80 | } |
| 81 | |||
| 1899 | jermar | 82 | /** Read version information from the current processor. */ |
| 640 | jermar | 83 | void cpu_identify(void) |
| 84 | { |
||
| 85 | CPU->arch.ver.value = ver_read(); |
||
| 86 | } |
||
| 87 | |||
| 1899 | jermar | 88 | /** Print version information for a processor. |
| 89 | * |
||
| 1903 | jermar | 90 | * This function is called by the bootstrap processor. |
| 91 | * |
||
| 2049 | jermar | 92 | * @param m Processor structure of the CPU for which version information is to |
| 93 | * be printed. |
||
| 1899 | jermar | 94 | */ |
| 640 | jermar | 95 | void cpu_print_report(cpu_t *m) |
| 96 | { |
||
| 97 | char *manuf, *impl; |
||
| 98 | |||
| 1903 | jermar | 99 | switch (m->arch.ver.manuf) { |
| 100 | case MANUF_FUJITSU: |
||
| 640 | jermar | 101 | manuf = "Fujitsu"; |
| 102 | break; |
||
| 1903 | jermar | 103 | case MANUF_ULTRASPARC: |
| 640 | jermar | 104 | manuf = "UltraSPARC"; |
| 105 | break; |
||
| 1903 | jermar | 106 | case MANUF_SUN: |
| 640 | jermar | 107 | manuf = "Sun"; |
| 108 | break; |
||
| 1903 | jermar | 109 | default: |
| 640 | jermar | 110 | manuf = "Unknown"; |
| 111 | break; |
||
| 112 | } |
||
| 113 | |||
| 114 | switch (CPU->arch.ver.impl) { |
||
| 1903 | jermar | 115 | case IMPL_ULTRASPARCI: |
| 640 | jermar | 116 | impl = "UltraSPARC I"; |
| 117 | break; |
||
| 1903 | jermar | 118 | case IMPL_ULTRASPARCII: |
| 640 | jermar | 119 | impl = "UltraSPARC II"; |
| 120 | break; |
||
| 1903 | jermar | 121 | case IMPL_ULTRASPARCII_I: |
| 640 | jermar | 122 | impl = "UltraSPARC IIi"; |
| 123 | break; |
||
| 1903 | jermar | 124 | case IMPL_ULTRASPARCII_E: |
| 640 | jermar | 125 | impl = "UltraSPARC IIe"; |
| 126 | break; |
||
| 1903 | jermar | 127 | case IMPL_ULTRASPARCIII: |
| 640 | jermar | 128 | impl = "UltraSPARC III"; |
| 129 | break; |
||
| 1903 | jermar | 130 | case IMPL_ULTRASPARCIV_PLUS: |
| 640 | jermar | 131 | impl = "UltraSPARC IV+"; |
| 132 | break; |
||
| 1903 | jermar | 133 | case IMPL_SPARC64V: |
| 640 | jermar | 134 | impl = "SPARC 64V"; |
| 135 | break; |
||
| 1903 | jermar | 136 | default: |
| 640 | jermar | 137 | impl = "Unknown"; |
| 138 | break; |
||
| 139 | } |
||
| 140 | |||
| 2049 | jermar | 141 | printf("cpu%d: manuf=%s, impl=%s, mask=%d (%dMHz)\n", m->id, manuf, |
| 142 | impl, m->arch.ver.mask, m->arch.clock_frequency / 1000000); |
||
| 640 | jermar | 143 | } |
| 1702 | cejka | 144 | |
| 1731 | jermar | 145 | /** @} |
| 1702 | cejka | 146 | */ |