Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Intel Elkhart Lake PSE I/O Auxiliary Device
4 *
5 * Copyright (c) 2025 Intel Corporation.
6 *
7 * Author: Raag Jadav <raag.jadav@intel.com>
8 */
9
10#ifndef _EHL_PSE_IO_AUX_H_
11#define _EHL_PSE_IO_AUX_H_
12
13#include <linux/ioport.h>
14
15#define EHL_PSE_IO_NAME "ehl_pse_io"
16#define EHL_PSE_GPIO_NAME "gpio"
17#define EHL_PSE_TIO_NAME "pps_tio"
18
19struct ehl_pse_io_data {
20 struct resource mem;
21 int irq;
22};
23
24#endif /* _EHL_PSE_IO_AUX_H_ */