Move smart-amp init to mainboard

Change-Id: I8f60e98d7d8f70c7a7374baf978461c963694cb8
This commit is contained in:
Jeremy Soller
2020-07-14 09:45:37 -06:00
parent f3ba5937e7
commit cff2635a22
4 changed files with 1101 additions and 1083 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
#ifndef TAS5825M_H
#define TAS5825M_H
#include <device/device.h>
int tas5825m_write_at(struct device *dev, uint8_t addr, uint8_t value);
int tas5825m_write_block_at(struct device *dev, uint8_t addr, const uint8_t * values, uint8_t length);
int tas5825m_set_page(struct device *dev, uint8_t page);
int tas5825m_set_book(struct device *dev, uint8_t book);
int tas5825m_setup(struct device *dev);
#endif // TAS5825M_H

View File

@@ -1,3 +1,4 @@
bootblock-y += bootblock.c
ramstage-y += ramstage.c
ramstage-y += hda_verb.c
ramstage-y += tas5825m.c

File diff suppressed because it is too large Load Diff