blob: def2259a4c3ccaa705d7139fb2c99dbc4b1c22f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __PS8625_H__
#define __PS8625_H__
#include <stdint.h>
struct parade_write {
uint8_t offset;
uint8_t reg;
uint8_t val;
};
void parade_ps8625_bridge_setup(unsigned int bus, unsigned int chip_base,
const struct parade_write *,
int parade_write_count);
#endif
|