summaryrefslogtreecommitdiffstats
path: root/src/include/usr/gpio/gpioif.H
blob: 2a010039bb6e3b6f2a75b9d86909bc1192ed3f6a (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/include/usr/gpio/gpioif.H $                               */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2014,2019                        */
/* [+] 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                                                     */
#ifndef __GPIOIF_H
#define __GPIOIF_H

#include <errl/errlentry.H>

namespace GPIO
{
/**
 * @brief Devices to be accessed
 */
enum gpioDevice_t
{
                                // Corresponds to attribute ...
    PCA95X_GPIO            = 0, // GPIO_INFO
    PCA9551_GPIO_PHYS_PRES = 1, // GPIO_INFO_PHYS_PRES
    INVALID_GPIO,
};


/* The following enums and interfaces are specific to PCA9551 GPIO Devices.
 * Documentation here: https://www.nxp.com/docs/en/data-sheet/PCA9551.pdf
 */

/**
 * @brief Specific to PCA9551: LED Bit Mask to match how their status is read
 *        back from LED "INPUT" register on PCA9551 Devices
 */
enum PCA9551_LEDS_t : uint8_t
{
    PCA9551_LED0            = 0x01,
    PCA9551_LED1            = 0x02,
    PCA9551_LED2            = 0x04,
    PCA9551_LED3            = 0x08,
    PCA9551_LED4            = 0x10,
    PCA9551_LED5            = 0x20,
    PCA9551_LED6            = 0x40,
    PCA9551_LED7            = 0x80,
};

/**
 * @brief Specific to PCA9551: Values used by the LED select registers
 *        to determine the source of the LED data.
 */
enum PCA9551_LED_Output_Settings_t : uint8_t
{
    PCA9551_OUTPUT_LOW            = 0x00, // LED on
    PCA9551_OUTPUT_HIGH_IMPEDANCE = 0x01, // LED off; default
    PCA9551_OUTPUT_PWM0           = 0x02, // Output blinks at PWM0 rate
    PCA9551_OUTPUT_PWM1           = 0x03, // Output blinks at PWM1 rate
};

/**
 * @brief Specific to PCA9551: Control register definition:
          sepcificies which register the operation will target
 */
enum PCA9551_Registers_t : uint8_t
{
    PCA9551_REGISTER_INPUT = 0x00, // INPUT (read only) input register
    PCA9551_REGISTER_PCS0  = 0x01, // PSC0 (r/w) frequency prescaler 0
    PCA9551_REGISTER_PWM0  = 0x02, // PWM0 (r/w) PWM register 0
    PCA9551_REGISTER_PCS1  = 0x03, // PSC1 (r/w) frequency prescaler 1
    PCA9551_REGISTER_PWM1  = 0x04, // PWM1 (r/w) PWM register 1
    PCA9551_REGISTER_LS0   = 0x05, // LS0  (r/w) LED0 to LED3 selector
    PCA9551_REGISTER_LS1   = 0x06, // LS1  (r/w) LED4 to LED7 selector
};

/**
 * @brief Specific to PCA9551: Helper constants to work with the bits in the
 *        PCA9551 registers
 */
enum PCA9551_Constants_t : uint8_t
{
    // Mask shifted to apply 2-bit settings to a specific LED in the output
    // settings register
    PCA9551_LED_SETTINGS_MASK = 0x03,

    // Amount to shift the LED value per LED when walking through the LEDs
    // in the INPUT register (related to PCA9551_LEDS_t above)
    PCA9551_LED_SHIFT_AMOUNT = 0x01,

    // Amount to shift the LED Settings MASK per LED when walking through the
    // LEDs in the output settings register (ie, 2 bits at a time)
    PCA9551_LED_SETTINGS_MASK_SHIFT_AMOUNT = 0x02,

    // LED Divider: While the INPUT register can contain all 8 LED values
    // (since each value is represented by one bit), the SETTINGS registers
    // (PCA9551_REGISTER_LS0 and PCA9551_REGISTER_LS1) can only cover 4 LEDs
    // each since each setting requires 2 bits.
    // This divisor takes LEDs 4 to 7 and makes them look like LEDs 0 to 3
    PCA9551_LED_SETTINGS_DIVISOR = 0x80,
};

/**
 * @brief Returns the PCA9551 Device's INPUT register which reflects the state
 *        of the device's LEDs (aka pins)
 *
 * @param[in] i_target - Target that contains ATTR_GPIO_INFO_PHYS_PRES attribute
 *                       to run the commands against
 *
 * @param[out] o_led_data - The INPUT register data from the device
 *
 * @return errlHndl_t nullptr on success; non-nullptr on error.
 */
errlHndl_t gpioPca9551GetLeds(TARGETING::Target * i_target,
                              uint8_t & o_led_data);

/**
 * @brief Sets the given LED (aka pin) of a PCA9551 Device to a certain setting
 *        and returns the INPUT register which reflects the state of device's
 *        LEDs (aka pins) after the setting has been run
 *
 * @param[in] i_target - Target that contains ATTR_GPIO_INFO_PHYS_PRES attribute
 *                       to run the commands against
 *
 * @param[in] i_led - The specific LED Target that contains ATTR_GPIO_INFO_PHYS_PRES attribute
 *                       to run the commands against
 *
 * @param[in] i_setting - the output setting to set the LED to
 *
 * @param[out] o_led_data - The INPUT register data from the device after the
 *                          'set' procedure has been run allowing the caller to
 *                          evaluate if the set actually went through
 *
 * @return errlHndl_t nullptr on success; non-nullptr on error.
 */

errlHndl_t gpioPca9551SetLed(TARGETING::Target * i_target,
                             const PCA9551_LEDS_t i_led,
                             const PCA9551_LED_Output_Settings_t i_setting,
                             uint8_t & o_led_data);


}; // GPIO NAMESPACE
#endif
OpenPOWER on IntegriCloud