Rev 2089 | Rev 2141 | 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 | |||
640 | jermar | 35 | #include <cpu.h> |
36 | #include <arch.h> |
||
1899 | jermar | 37 | #include <genarch/ofw/ofw_tree.h> |
38 | #include <arch/drivers/tick.h> |
||
2089 | decky | 39 | #include <print.h> |
640 | jermar | 40 | |
2049 | jermar | 41 | /** Perform sparc64 specific initialization of the processor structure for the |
42 | * current processor. |
||
43 | */ |
||
640 | jermar | 44 | void cpu_arch_init(void) |
45 | { |
||
1899 | jermar | 46 | ofw_tree_node_t *node; |
47 | uint32_t mid; |
||
48 | uint32_t clock_frequency = 0; |
||
49 | upa_config_t upa_config; |
||
50 | |||
51 | upa_config.value = upa_config_read(); |
||
1903 | jermar | 52 | CPU->arch.mid = upa_config.mid; |
53 | |||
2134 | jermar | 54 | #if (defined(CONFIG_SMP) && defined(CONFIG_VIRT_IDX_DCACHE)) |
55 | CPU->arch.dcache_active = 1; |
||
56 | CPU->arch.dcache_message_count = 0; |
||
57 | #endif |
||
58 | |||
1917 | jermar | 59 | /* |
60 | * Detect processor frequency. |
||
61 | */ |
||
1899 | jermar | 62 | node = ofw_tree_find_child_by_device_type(ofw_tree_lookup("/"), "cpu"); |
63 | while (node) { |
||
64 | ofw_tree_property_t *prop; |
||
65 | |||
66 | prop = ofw_tree_getprop(node, "upa-portid"); |
||
67 | if (prop && prop->value) { |
||
68 | mid = *((uint32_t *) prop->value); |
||
1903 | jermar | 69 | if (mid == CPU->arch.mid) { |
2049 | jermar | 70 | prop = ofw_tree_getprop(node, |
71 | "clock-frequency"); |
||
1899 | jermar | 72 | if (prop && prop->value) |
2049 | jermar | 73 | clock_frequency = *((uint32_t *) |
74 | prop->value); |
||
1899 | jermar | 75 | } |
76 | } |
||
77 | node = ofw_tree_find_peer_by_device_type(node, "cpu"); |
||
78 | } |
||
79 | |||
80 | CPU->arch.clock_frequency = clock_frequency; |
||
81 | tick_init(); |
||
640 | jermar | 82 | } |
83 | |||
1899 | jermar | 84 | /** Read version information from the current processor. */ |
640 | jermar | 85 | void cpu_identify(void) |
86 | { |
||
87 | CPU->arch.ver.value = ver_read(); |
||
88 | } |
||
89 | |||
1899 | jermar | 90 | /** Print version information for a processor. |
91 | * |
||
1903 | jermar | 92 | * This function is called by the bootstrap processor. |
93 | * |
||
2049 | jermar | 94 | * @param m Processor structure of the CPU for which version information is to |
95 | * be printed. |
||
1899 | jermar | 96 | */ |
640 | jermar | 97 | void cpu_print_report(cpu_t *m) |
98 | { |
||
99 | char *manuf, *impl; |
||
100 | |||
1903 | jermar | 101 | switch (m->arch.ver.manuf) { |
102 | case MANUF_FUJITSU: |
||
640 | jermar | 103 | manuf = "Fujitsu"; |
104 | break; |
||
1903 | jermar | 105 | case MANUF_ULTRASPARC: |
640 | jermar | 106 | manuf = "UltraSPARC"; |
107 | break; |
||
1903 | jermar | 108 | case MANUF_SUN: |
640 | jermar | 109 | manuf = "Sun"; |
110 | break; |
||
1903 | jermar | 111 | default: |
640 | jermar | 112 | manuf = "Unknown"; |
113 | break; |
||
114 | } |
||
115 | |||
116 | switch (CPU->arch.ver.impl) { |
||
1903 | jermar | 117 | case IMPL_ULTRASPARCI: |
640 | jermar | 118 | impl = "UltraSPARC I"; |
119 | break; |
||
1903 | jermar | 120 | case IMPL_ULTRASPARCII: |
640 | jermar | 121 | impl = "UltraSPARC II"; |
122 | break; |
||
1903 | jermar | 123 | case IMPL_ULTRASPARCII_I: |
640 | jermar | 124 | impl = "UltraSPARC IIi"; |
125 | break; |
||
1903 | jermar | 126 | case IMPL_ULTRASPARCII_E: |
640 | jermar | 127 | impl = "UltraSPARC IIe"; |
128 | break; |
||
1903 | jermar | 129 | case IMPL_ULTRASPARCIII: |
640 | jermar | 130 | impl = "UltraSPARC III"; |
131 | break; |
||
1903 | jermar | 132 | case IMPL_ULTRASPARCIV_PLUS: |
640 | jermar | 133 | impl = "UltraSPARC IV+"; |
134 | break; |
||
1903 | jermar | 135 | case IMPL_SPARC64V: |
640 | jermar | 136 | impl = "SPARC 64V"; |
137 | break; |
||
1903 | jermar | 138 | default: |
640 | jermar | 139 | impl = "Unknown"; |
140 | break; |
||
141 | } |
||
142 | |||
2049 | jermar | 143 | printf("cpu%d: manuf=%s, impl=%s, mask=%d (%dMHz)\n", m->id, manuf, |
144 | impl, m->arch.ver.mask, m->arch.clock_frequency / 1000000); |
||
640 | jermar | 145 | } |
1702 | cejka | 146 | |
1731 | jermar | 147 | /** @} |
1702 | cejka | 148 | */ |