| 1 | /* SPDX-License-Identifier: MIT */ | 
|---|---|
| 2 | /* | 
| 3 | * Copyright © 2022 Intel Corporation | 
| 4 | */ | 
| 5 | |
| 6 | #ifndef __INTEL_DKL_PHY_H__ | 
| 7 | #define __INTEL_DKL_PHY_H__ | 
| 8 | |
| 9 | #include <linux/types.h> | 
| 10 | |
| 11 | #include "intel_dkl_phy_regs.h" | 
| 12 | |
| 13 | struct intel_display; | 
| 14 | |
| 15 | void intel_dkl_phy_init(struct intel_display *display); | 
| 16 | u32 | 
| 17 | intel_dkl_phy_read(struct intel_display *display, struct intel_dkl_phy_reg reg); | 
| 18 | void | 
| 19 | intel_dkl_phy_write(struct intel_display *display, struct intel_dkl_phy_reg reg, u32 val); | 
| 20 | void | 
| 21 | intel_dkl_phy_rmw(struct intel_display *display, struct intel_dkl_phy_reg reg, u32 clear, u32 set); | 
| 22 | void | 
| 23 | intel_dkl_phy_posting_read(struct intel_display *display, struct intel_dkl_phy_reg reg); | 
| 24 | |
| 25 | #endif /* __INTEL_DKL_PHY_H__ */ | 
| 26 | 
