1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * include/linux/platform_data/uio_pruss.h 4 * 5 * Platform data for uio_pruss driver 6 * 7 * Copyright (C) 2010-11 Texas Instruments Incorporated - https://www.ti.com/ 8 */ 9 10 #ifndef _UIO_PRUSS_H_ 11 #define _UIO_PRUSS_H_ 12 13 /* To configure the PRUSS INTC base offset for UIO driver */ 14 struct uio_pruss_pdata { 15 u32 pintc_base; 16 struct gen_pool *sram_pool; 17 }; 18 #endif /* _UIO_PRUSS_H_ */ 19