1 /* 2 * Copyright 2014 Freescale Semiconductor, Inc. 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __FSL_LS102XA_STREAM_ID_H_ 8 #define __FSL_LS102XA_STREAM_ID_H_ 9 10 struct smmu_stream_id { 11 uint16_t offset; 12 uint16_t stream_id; 13 char dev_name[32]; 14 }; 15 16 void ls102xa_config_smmu_stream_id(struct smmu_stream_id *id, uint32_t num); 17 #endif 18