xref: /aosp_15_r20/external/coreboot/src/drivers/parade/ps8625/ps8625.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
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
19