repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git]
/
src
/
drivers
/
parade
/
ps8625
/
ps8625.h
blob
e0e92de696a068ba811de94b8d08b3b684e727ce
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef __PS8625_H__
4
#define __PS8625_H__
5
6
#include <stdint.h>
7
8
struct
parade_write
{
9
uint8_t
offset
;
10
uint8_t
reg
;
11
uint8_t
val
;
12
};
13
14
void
parade_ps8625_bridge_setup
(
unsigned int
bus
,
unsigned int
chip_base
,
15
const struct
parade_write
*,
16
int
parade_write_count
);
17
18
#endif