Subversion Repositories HelenOS

Rev

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