mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-23 10:12:24 +00:00
Introduce diag310 and memory topology related subcodes. Provide memory topology information obtanied from diag310 to userspace via diag ioctl. Signed-off-by: Mete Durlu <meted@linux.ibm.com> Reviewed-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
15 lines
354 B
C
15 lines
354 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _DIAG_IOCTL_H
|
|
#define _DIAG_IOCTL_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
long diag324_pibbuf(unsigned long arg);
|
|
long diag324_piblen(unsigned long arg);
|
|
|
|
long diag310_memtop_stride(unsigned long arg);
|
|
long diag310_memtop_len(unsigned long arg);
|
|
long diag310_memtop_buf(unsigned long arg);
|
|
|
|
#endif /* _DIAG_IOCTL_H */
|