coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
azalia.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <console/console.h>
4 #include <device/device.h>
5 #include <device/pci.h>
6 #include <device/pci_ids.h>
7 #include <device/pci_ops.h>
8 #include <device/mmio.h>
9 #include <delay.h>
10 #include <device/azalia_device.h>
11 #include "pch.h"
12 
13 static int codec_detect(u8 *base)
14 {
15  u8 reg8;
16 
17  if (azalia_exit_reset(base) < 0)
18  goto no_codec;
19 
20  /* Write back the value once reset bit is set. */
22 
23  /* Read in Codec location (BAR + 0xe)[2..0] */
24  reg8 = read8(base + HDA_STATESTS_REG);
25  reg8 &= 0x0f;
26  if (!reg8)
27  goto no_codec;
28 
29  return reg8;
30 
31 no_codec:
32  /* Codec not found, put HDA back in reset */
34  printk(BIOS_DEBUG, "Azalia: No codec!\n");
35  return 0;
36 }
37 
38 static void azalia_init(struct device *dev)
39 {
40  u8 *base;
41  struct resource *res;
42  u32 codec_mask;
43  u32 reg32;
44 
45  /* Find base address */
47  if (!res)
48  return;
49 
50  // NOTE this will break as soon as the Azalia gets a bar above 4G.
51  // Is there anything we can do about it?
52  base = res2mmio(res, 0, 0);
53  printk(BIOS_DEBUG, "Azalia: base = %p\n", base);
54 
55  if (RCBA32(0x2030) & (1 << 31)) {
56  reg32 = pci_read_config32(dev, 0x120);
57  reg32 &= 0xf8ffff01;
58  reg32 |= (1 << 24); // 2 << 24 for server
59  reg32 |= RCBA32(0x2030) & 0xfe;
60  pci_write_config32(dev, 0x120, reg32);
61 
62  pci_or_config16(dev, 0x78, 1 << 11);
63  } else
64  printk(BIOS_DEBUG, "Azalia: V1CTL disabled.\n");
65 
66  pci_and_config32(dev, 0x114, ~0xfe);
67 
68  // Set VCi enable bit
69  pci_or_config32(dev, 0x120, 1 << 31);
70 
71  // Enable HDMI codec:
72  pci_or_config32(dev, 0xc4, 1 << 1);
73 
74  pci_or_config8(dev, 0x43, 1 << 6);
75 
76  pci_and_config32(dev, 0xd0, ~(1 << 31));
77 
78  /* Set Bus Master */
80 
81  pci_write_config8(dev, 0x3c, 0x0a); // unused?
82 
83  /* Codec Initialization Programming Sequence */
84 
85  /* Take controller out of reset */
86  reg32 = read32(base + HDA_GCTL_REG);
87  reg32 |= HDA_GCTL_CRST;
88  write32(base + HDA_GCTL_REG, reg32);
89  /* Wait 1ms */
90  udelay(1000);
91 
92  // Select Azalia mode. This needs to be controlled via devicetree.cb
93  pci_or_config8(dev, 0x40, 1); // Audio Control
94 
95  // Docking not supported
96  pci_and_config8(dev, 0x4d, (u8)~(1 << 7)); // Docking Status
97 
98  codec_mask = codec_detect(base);
99 
100  if (codec_mask) {
101  printk(BIOS_DEBUG, "Azalia: codec_mask = %02x\n", codec_mask);
102  azalia_codecs_init(base, codec_mask);
103  }
104 
105  /* Enable dynamic clock gating */
106  pci_update_config8(dev, 0x43, ~0x07, (1 << 2) | (1 << 0));
107 }
108 
109 static struct device_operations azalia_ops = {
111  .set_resources = pci_dev_set_resources,
112  .enable_resources = pci_dev_enable_resources,
113  .init = azalia_init,
114  .ops_pci = &pci_dev_ops_pci,
115 };
116 
117 static const unsigned short pci_device_ids[] = {
118  0x1c20,
119  0x1e20,
121  0
122 };
123 
124 static const struct pci_driver pch_azalia __pci_driver = {
125  .ops = &azalia_ops,
126  .vendor = PCI_VID_INTEL,
127  .devices = pci_device_ids,
128 };
static void write32(void *addr, uint32_t val)
Definition: mmio.h:40
static uint16_t read16(const void *addr)
Definition: mmio.h:17
static uint32_t read32(const void *addr)
Definition: mmio.h:22
static uint8_t read8(const void *addr)
Definition: mmio.h:12
static void write16(void *addr, uint16_t val)
Definition: mmio.h:35
int azalia_enter_reset(u8 *base)
Definition: azalia_device.c:38
void azalia_codecs_init(u8 *base, u16 codec_mask)
int azalia_exit_reset(u8 *base)
Definition: azalia_device.c:44
#define HDA_GCTL_REG
Definition: azalia_device.h:12
#define HDA_GCTL_CRST
Definition: azalia_device.h:13
#define HDA_STATESTS_REG
Definition: azalia_device.h:14
#define HDA_GCAP_REG
Definition: azalia_device.h:11
#define printk(level,...)
Definition: stdlib.h:16
struct resource * probe_resource(const struct device *dev, unsigned int index)
See if a resource structure already exists for a given index.
Definition: device_util.c:323
static int codec_detect(u8 *base)
Definition: azalia.c:13
static const unsigned short pci_device_ids[]
Definition: azalia.c:117
static void azalia_init(struct device *dev)
Definition: azalia.c:38
static struct device_operations azalia_ops
Definition: azalia.c:109
static const struct pci_driver pch_azalia __pci_driver
Definition: azalia.c:124
static __always_inline void pci_or_config32(const struct device *dev, u16 reg, u32 ormask)
Definition: pci_ops.h:191
static __always_inline void pci_write_config32(const struct device *dev, u16 reg, u32 val)
Definition: pci_ops.h:76
static __always_inline void pci_and_config8(const struct device *dev, u16 reg, u8 andmask)
Definition: pci_ops.h:136
static __always_inline void pci_update_config8(const struct device *dev, u16 reg, u8 mask, u8 or)
Definition: pci_ops.h:88
static __always_inline void pci_or_config16(const struct device *dev, u16 reg, u16 ormask)
Definition: pci_ops.h:180
static __always_inline void pci_or_config8(const struct device *dev, u16 reg, u8 ormask)
Definition: pci_ops.h:169
static __always_inline u32 pci_read_config32(const struct device *dev, u16 reg)
Definition: pci_ops.h:58
static __always_inline void pci_and_config32(const struct device *dev, u16 reg, u32 andmask)
Definition: pci_ops.h:158
static __always_inline void pci_write_config8(const struct device *dev, u16 reg, u8 val)
Definition: pci_ops.h:64
#define BIOS_DEBUG
BIOS_DEBUG - Verbose output.
Definition: loglevel.h:128
#define PCI_COMMAND_MASTER
Definition: pci_def.h:13
#define PCI_BASE_ADDRESS_0
Definition: pci_def.h:63
#define PCI_COMMAND
Definition: pci_def.h:10
void pci_dev_enable_resources(struct device *dev)
Definition: pci_device.c:721
void pci_dev_read_resources(struct device *dev)
Definition: pci_device.c:534
struct pci_operations pci_dev_ops_pci
Default device operation for PCI devices.
Definition: pci_device.c:911
void pci_dev_set_resources(struct device *dev)
Definition: pci_device.c:691
#define PCI_VID_INTEL
Definition: pci_ids.h:2157
#define PCI_DID_INTEL_IBEXPEAK_AUDIO
Definition: pci_ids.h:2813
static void * res2mmio(const struct resource *res, unsigned long offset, unsigned long mask)
Definition: resource.h:87
uintptr_t base
Definition: uart.c:17
#define RCBA32(x)
Definition: rcba.h:14
uint32_t u32
Definition: stdint.h:51
uint8_t u8
Definition: stdint.h:45
void(* read_resources)(struct device *dev)
Definition: device.h:39
Definition: device.h:107
void udelay(uint32_t us)
Definition: udelay.c:15