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 12 int tpmi_sst_init(void); 13 void tpmi_sst_exit(void); 14 int tpmi_sst_dev_add(struct auxiliary_device *auxdev); 15 void tpmi_sst_dev_remove(struct auxiliary_device *auxdev); 16 void tpmi_sst_dev_suspend(struct auxiliary_device *auxdev); 17 void tpmi_sst_dev_resume(struct auxiliary_device *auxdev); 18 #endif 19