summaryrefslogtreecommitdiffstats
path: root/src/occ_gpe0/apss_meas_read_cont.pS
blob: 0bd44b5c57142686ef70d2da8c35843df1d411a2 (plain)
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
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/occ/gpe/apss_meas_read_cont.pS $
#
# OpenPOWER OnChipController Project
#
# Contributors Listed Below - COPYRIGHT 2011,2014
# [+] Google Inc.
# [+] International Business Machines Corp.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG

//////////////////////////////////////////////////////////////////////
// Includes
//////////////////////////////////////////////////////////////////////
.nolist
#include "pgp.h"
#include "pgas.h"
.list

//////////////////////////////////////////////////////////////////////
// Define Address Space
//////////////////////////////////////////////////////////////////////
.oci

//////////////////////////////////////////////////////////////////////
// Define Symbols
//////////////////////////////////////////////////////////////////////

#include <pss_constants.h>

#define GPE_PROG_ID 0x0005

//////////////////////////////////////////////////////////////////////
// Define Structures
//////////////////////////////////////////////////////////////////////

// Declare the offsets of the struct that will be passed to the
// GPE program via the ETR register
//
// struct G_gpe_apss_continue_pwr_meas_read_args =
// {
.struct     0
ERROR_RC:
    .struct ERROR_RC + 8
ERROR_FFDC:
    .struct ERROR_FFDC + 8
MEASUREMENTS:
// };

//////////////////////////////////////////////////////////////////////
// Begin Program
//////////////////////////////////////////////////////////////////////

.text

#include <gpe_macros.h>
#include <pss_macros.h>

//--------------------------------------------------------------------
// PORE-GPE Routine Specification:
//
// Name: GPE_apss_continue_pwr_meas_read
//
// Description:  Continue the read of the power measurement from APSS
//
// Inputs:       G_gpe_continue_pwr_meas_read_args
//     struct {
//         PoreGpeErrorStruct error;
//         uint64_t meas_data[4]; // G_apss_pwr_meas (1st block of data) (output from APSS)
//     } G_gpe_continue_pwr_meas_read_args
//     struct {
//         uint64_t rc;          // This should be read as 63:32=addr, 31:0=rc
//         uint64_t ffdc;        // Whatever GPE program puts in for FFDC data
//     } PoreGpeErrorStruct;
//
// Outputs:      GPE_continue_pwr_meas_read (error on failure)
//
// End PORE-GPE Routine Specification
//--------------------------------------------------------------------
.global GPE_apss_continue_pwr_meas_read
GPE_apss_continue_pwr_meas_read:

    // Copy passed Structure Pointer into A1
    mr      A1, ETR

    // Wait for up to 5us for spi op complete, else branch to error_timeout
    _wait_for_adc_ops_complete 100, error_timeout

    // Read/save first 32 bytes of data
    _getscom SPIPSS_ADC_RDATA_REG0
    std D0, MEASUREMENTS, A1

    _getscom SPIPSS_ADC_RDATA_REG1
    std D0, (MEASUREMENTS + 8), A1

    _getscom SPIPSS_ADC_RDATA_REG2
    std D0, (MEASUREMENTS + 16), A1

    _getscom SPIPSS_ADC_RDATA_REG3
    std D0, (MEASUREMENTS + 24), A1

    halt


error_statusreg:
    // An error/reserved bit was set when reading adc status register...
    // D0: ADC_STATUS_REG
    _saveffdc GPE_PROG_ID, 0x0002
    halt


error_timeout:
    // adc_ongoing bit was never cleared after several retries...
    // D0: ADC_STATUS_REG
    _saveffdc GPE_PROG_ID, 0x0001
    halt


//////////////////////////////////////////////////////////////////////
// End of Program
//////////////////////////////////////////////////////////////////////
OpenPOWER on IntegriCloud