1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) ST-Ericsson AB 2010
4 * Author: Daniel Martensson / daniel.martensson@stericsson.com
5 * Dmitry.Tarnyagin / dmitry.tarnyagin@stericsson.com
11 #include <net/caif/caif_layer.h>
12 #include <net/caif/caif_device.h>
13 #include <linux/atomic.h>
16 * Maximum number of CAIF frames that can reside in the same HSI frame.
18 #define CFHSI_MAX_PKTS 15
21 * Maximum number of bytes used for the frame that can be embedded in the
24 #define CFHSI_MAX_EMB_FRM_SZ 96
27 * Decides if HSI buffers should be prefilled with 0xFF pattern for easier
28 * debugging. Both TX and RX buffers will be filled before the transfer.
30 #define CFHSI_DBG_PREFILL 0
32 /* Structure describing a HSI packet descriptor. */
33 #pragma pack(1) /* Byte alignment. */
37 u16 cffrm_len
[CFHSI_MAX_PKTS
];
38 u8 emb_frm
[CFHSI_MAX_EMB_FRM_SZ
];
40 #pragma pack() /* Default alignment. */
42 /* Size of the complete HSI packet descriptor. */
43 #define CFHSI_DESC_SZ (sizeof(struct cfhsi_desc))
46 * Size of the complete HSI packet descriptor excluding the optional embedded
49 #define CFHSI_DESC_SHORT_SZ (CFHSI_DESC_SZ - CFHSI_MAX_EMB_FRM_SZ)
52 * Maximum bytes transferred in one transfer.
54 #define CFHSI_MAX_CAIF_FRAME_SZ 4096
56 #define CFHSI_MAX_PAYLOAD_SZ (CFHSI_MAX_PKTS * CFHSI_MAX_CAIF_FRAME_SZ)
58 /* Size of the complete HSI TX buffer. */
59 #define CFHSI_BUF_SZ_TX (CFHSI_DESC_SZ + CFHSI_MAX_PAYLOAD_SZ)
61 /* Size of the complete HSI RX buffer. */
62 #define CFHSI_BUF_SZ_RX ((2 * CFHSI_DESC_SZ) + CFHSI_MAX_PAYLOAD_SZ)
64 /* Bitmasks for the HSI descriptor. */
65 #define CFHSI_PIGGY_DESC (0x01 << 7)
67 #define CFHSI_TX_STATE_IDLE 0
68 #define CFHSI_TX_STATE_XFER 1
70 #define CFHSI_RX_STATE_DESC 0
71 #define CFHSI_RX_STATE_PAYLOAD 1
73 /* Bitmasks for power management. */
74 #define CFHSI_WAKE_UP 0
75 #define CFHSI_WAKE_UP_ACK 1
76 #define CFHSI_WAKE_DOWN_ACK 2
78 #define CFHSI_WAKELOCK_HELD 4
79 #define CFHSI_SHUTDOWN 5
80 #define CFHSI_FLUSH_FIFO 6
82 #ifndef CFHSI_INACTIVITY_TOUT
83 #define CFHSI_INACTIVITY_TOUT (1 * HZ)
84 #endif /* CFHSI_INACTIVITY_TOUT */
86 #ifndef CFHSI_WAKE_TOUT
87 #define CFHSI_WAKE_TOUT (3 * HZ)
88 #endif /* CFHSI_WAKE_TOUT */
90 #ifndef CFHSI_MAX_RX_RETRIES
91 #define CFHSI_MAX_RX_RETRIES (10 * HZ)
94 /* Structure implemented by the CAIF HSI driver. */
96 void (*tx_done_cb
) (struct cfhsi_cb_ops
*drv
);
97 void (*rx_done_cb
) (struct cfhsi_cb_ops
*drv
);
98 void (*wake_up_cb
) (struct cfhsi_cb_ops
*drv
);
99 void (*wake_down_cb
) (struct cfhsi_cb_ops
*drv
);
102 /* Structure implemented by HSI device. */
104 int (*cfhsi_up
) (struct cfhsi_ops
*dev
);
105 int (*cfhsi_down
) (struct cfhsi_ops
*dev
);
106 int (*cfhsi_tx
) (u8
*ptr
, int len
, struct cfhsi_ops
*dev
);
107 int (*cfhsi_rx
) (u8
*ptr
, int len
, struct cfhsi_ops
*dev
);
108 int (*cfhsi_wake_up
) (struct cfhsi_ops
*dev
);
109 int (*cfhsi_wake_down
) (struct cfhsi_ops
*dev
);
110 int (*cfhsi_get_peer_wake
) (struct cfhsi_ops
*dev
, bool *status
);
111 int (*cfhsi_fifo_occupancy
) (struct cfhsi_ops
*dev
, size_t *occupancy
);
112 int (*cfhsi_rx_cancel
)(struct cfhsi_ops
*dev
);
113 struct cfhsi_cb_ops
*cb_ops
;
116 /* Structure holds status of received CAIF frames processing */
117 struct cfhsi_rx_state
{
125 /* Priority mapping */
134 struct cfhsi_config
{
135 u32 inactivity_timeout
;
136 u32 aggregation_timeout
;
143 /* Structure implemented by CAIF HSI drivers. */
145 struct caif_dev_common cfdev
;
146 struct net_device
*ndev
;
147 struct platform_device
*pdev
;
148 struct sk_buff_head qhead
[CFHSI_PRIO_LAST
];
149 struct cfhsi_cb_ops cb_ops
;
150 struct cfhsi_ops
*ops
;
152 struct cfhsi_rx_state rx_state
;
153 struct cfhsi_config cfg
;
161 struct list_head list
;
162 struct work_struct wake_up_work
;
163 struct work_struct wake_down_work
;
164 struct work_struct out_of_sync_work
;
165 struct workqueue_struct
*wq
;
166 wait_queue_head_t wake_up_wait
;
167 wait_queue_head_t wake_down_wait
;
168 wait_queue_head_t flush_fifo_wait
;
169 struct timer_list inactivity_timer
;
170 struct timer_list rx_slowpath_timer
;
174 struct timer_list aggregation_timer
;
178 extern struct platform_driver cfhsi_driver
;
181 * enum ifla_caif_hsi - CAIF HSI NetlinkRT parameters.
182 * @IFLA_CAIF_HSI_INACTIVITY_TOUT: Inactivity timeout before
183 * taking the HSI wakeline down, in milliseconds.
184 * When using RT Netlink to create, destroy or configure a CAIF HSI interface,
185 * enum ifla_caif_hsi is used to specify the configuration attributes.
188 __IFLA_CAIF_HSI_UNSPEC
,
189 __IFLA_CAIF_HSI_INACTIVITY_TOUT
,
190 __IFLA_CAIF_HSI_AGGREGATION_TOUT
,
191 __IFLA_CAIF_HSI_HEAD_ALIGN
,
192 __IFLA_CAIF_HSI_TAIL_ALIGN
,
193 __IFLA_CAIF_HSI_QHIGH_WATERMARK
,
194 __IFLA_CAIF_HSI_QLOW_WATERMARK
,
198 struct cfhsi_ops
*cfhsi_get_ops(void);
200 #endif /* CAIF_HSI_H_ */