1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Intel Speed Select Interface: Drivers Internal defines
4 * Copyright (c) 2023, Intel Corporation.
5 * All rights reserved.
6 *
7 */
8
9#ifndef _ISST_TPMI_CORE_H
10#define _ISST_TPMI_CORE_H
11
12int tpmi_sst_init(void);
13void tpmi_sst_exit(void);
14int tpmi_sst_dev_add(struct auxiliary_device *auxdev);
15void tpmi_sst_dev_remove(struct auxiliary_device *auxdev);
16void tpmi_sst_dev_suspend(struct auxiliary_device *auxdev);
17void tpmi_sst_dev_resume(struct auxiliary_device *auxdev);
18#endif
19