dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
27 lines
666 B
C
27 lines
666 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* PTP PCH
|
|
*
|
|
* Copyright 2019 Linaro Ltd.
|
|
*
|
|
* Author Lee Jones <lee.jones@linaro.org>
|
|
*/
|
|
|
|
#ifndef _PTP_PCH_H_
|
|
#define _PTP_PCH_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct pci_dev;
|
|
|
|
void pch_ch_control_write(struct pci_dev *pdev, u32 val);
|
|
u32 pch_ch_event_read(struct pci_dev *pdev);
|
|
void pch_ch_event_write(struct pci_dev *pdev, u32 val);
|
|
u32 pch_src_uuid_lo_read(struct pci_dev *pdev);
|
|
u32 pch_src_uuid_hi_read(struct pci_dev *pdev);
|
|
u64 pch_rx_snap_read(struct pci_dev *pdev);
|
|
u64 pch_tx_snap_read(struct pci_dev *pdev);
|
|
int pch_set_station_address(u8 *addr, struct pci_dev *pdev);
|
|
|
|
#endif /* _PTP_PCH_H_ */
|