coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
pmic.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <boardid.h>
4 #include <console/console.h>
5 #include <delay.h>
6 #include <device/i2c_simple.h>
7 #include <stdint.h>
8 #include <reset.h>
9 
10 #include "pmic.h"
11 
12 enum {
13  AS3722_I2C_ADDR = 0x40
14 };
15 
20 };
21 
22 static struct as3722_init_reg init_list[] = {
23  {AS3722_SDO0, 0x3C, 1},
24  {AS3722_SDO1, 0x32, 0},
25  {AS3722_LDO3, 0x59, 0},
26  {AS3722_SDO2, 0x3C, 0},
27  {AS3722_SDO3, 0x00, 0},
28  {AS3722_SDO4, 0x00, 0},
29  {AS3722_SDO5, 0x50, 0},
30  {AS3722_SDO6, 0x28, 1},
31  {AS3722_LDO0, 0x8A, 0},
32  {AS3722_LDO1, 0x00, 0},
33  {AS3722_LDO2, 0x10, 0},
34  {AS3722_LDO4, 0x00, 0},
35  {AS3722_LDO5, 0x00, 0},
36  {AS3722_LDO6, 0x00, 0},
37  {AS3722_LDO7, 0x00, 0},
38  {AS3722_LDO9, 0x00, 0},
39  {AS3722_LDO10, 0x00, 0},
40  {AS3722_LDO11, 0x00, 1},
41 };
42 
43 static void pmic_write_reg(unsigned int bus, uint8_t reg, uint8_t val, int do_delay)
44 {
46  printk(BIOS_ERR, "%s: reg = 0x%02X, value = 0x%02X failed!\n",
47  __func__, reg, val);
48  /* Reset the SoC on any PMIC write error */
49  board_reset();
50  } else {
51  if (do_delay)
52  udelay(500);
53  }
54 }
55 
56 static void pmic_slam_defaults(unsigned int bus)
57 {
58  int i;
59  for (i = 0; i < ARRAY_SIZE(init_list); i++) {
60  struct as3722_init_reg *reg = &init_list[i];
61  pmic_write_reg(bus, reg->reg, reg->val, reg->delay);
62  }
63 }
64 
65 void pmic_init(unsigned int bus)
66 {
67  /*
68  * Don't need to set up VDD_CORE - already done - by OTP
69  * Don't write SDCONTROL - it's already 0x7F, i.e. all SDs enabled.
70  * Don't write LDCONTROL - it's already 0xFF, i.e. all LDOs enabled.
71  */
72 
73  /* Restore PMIC POR defaults, in case kernel changed 'em */
75 
76  /* First set VDD_CPU to 1.2V, then enable the VDD_CPU regulator. */
77  if (board_id() == 0)
78  pmic_write_reg(bus, 0x00, 0x3c, 1);
79  else
80  pmic_write_reg(bus, 0x00, 0x50, 1);
81 
82  /* First set VDD_GPU to 1.0V, then enable the VDD_GPU regulator. */
83  pmic_write_reg(bus, 0x06, 0x28, 1);
84 
85  /*
86  * First set +1.2V_GEN_AVDD to 1.2V, then enable the +1.2V_GEN_AVDD
87  * regulator.
88  */
89  pmic_write_reg(bus, 0x12, 0x10, 1);
90 
91  /*
92  * Panel power GPIO O4. Set mode for GPIO4 (0x0c to 7), then set
93  * the value (register 0x20 bit 4)
94  */
95  pmic_write_reg(bus, 0x0c, 0x07, 0);
96  pmic_write_reg(bus, 0x20, 0x10, 1);
97 }
#define ARRAY_SIZE(a)
Definition: helpers.h:12
#define printk(level,...)
Definition: stdlib.h:16
uint32_t board_id(void)
board_id() - Get the board version
Definition: ec_boardid.c:6
void pmic_init(unsigned int bus)
Definition: pmic.c:34
static int i2c_writeb(unsigned int bus, uint8_t slave, uint8_t reg, uint8_t data)
Write a byte with one segment in one frame.
Definition: i2c_simple.h:131
__noreturn void board_reset(void)
Definition: reset.c:8
#define BIOS_ERR
BIOS_ERR - System in incomplete state.
Definition: loglevel.h:72
static void pmic_slam_defaults(unsigned int bus)
Definition: pmic.c:56
@ AS3722_I2C_ADDR
Definition: pmic.c:13
static struct as3722_init_reg init_list[]
Definition: pmic.c:22
static void pmic_write_reg(unsigned int bus, uint8_t reg, uint8_t val, int do_delay)
Definition: pmic.c:43
@ AS3722_SDO3
Definition: pmic.h:10
@ AS3722_LDO9
Definition: pmic.h:24
@ AS3722_LDO6
Definition: pmic.h:21
@ AS3722_LDO1
Definition: pmic.h:16
@ AS3722_LDO5
Definition: pmic.h:20
@ AS3722_SDO2
Definition: pmic.h:9
@ AS3722_LDO7
Definition: pmic.h:22
@ AS3722_SDO4
Definition: pmic.h:11
@ AS3722_LDO3
Definition: pmic.h:18
@ AS3722_SDO0
Definition: pmic.h:7
@ AS3722_SDO6
Definition: pmic.h:13
@ AS3722_LDO11
Definition: pmic.h:26
@ AS3722_LDO10
Definition: pmic.h:25
@ AS3722_LDO4
Definition: pmic.h:19
@ AS3722_LDO2
Definition: pmic.h:17
@ AS3722_SDO5
Definition: pmic.h:12
@ AS3722_SDO1
Definition: pmic.h:8
@ AS3722_LDO0
Definition: pmic.h:15
uint8_t u8
Definition: stdint.h:45
unsigned char uint8_t
Definition: stdint.h:8
Definition: device.h:76
u8 val
Definition: sys.c:300
void udelay(uint32_t us)
Definition: udelay.c:15