30 lines
754 B
C
Executable File
30 lines
754 B
C
Executable File
/*
|
|
* Copyright (C) 2019 Spreadtrum Communications Inc.
|
|
*
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __SPIPE_H
|
|
#define __SPIPE_H
|
|
|
|
#define MAX_SPIPE_CHN_NUM 4
|
|
#define SPIPE_DRVIER_NMAE "spipe"
|
|
|
|
struct spipe_init_data {
|
|
char *name;
|
|
char *sipc_name;
|
|
u8 dst;
|
|
u8 channel;
|
|
u32 ringnr;
|
|
u32 txbuf_size;
|
|
u32 rxbuf_size;
|
|
};
|
|
#endif
|