blob: 046d6d258b320c3c3cd448eb9c3ce53f3154f99f [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Ashwin Chaugule86c22f82014-11-12 19:59:38 -05002
3#ifndef __MAILBOX_H
4#define __MAILBOX_H
5
6#define TXDONE_BY_IRQ BIT(0) /* controller has remote RTR irq */
7#define TXDONE_BY_POLL BIT(1) /* controller can read status of last TX */
Tom Saeger9d2e8b92021-03-12 19:31:10 -07008#define TXDONE_BY_ACK BIT(2) /* S/W ACK received by Client ticks the TX */
Ashwin Chaugule86c22f82014-11-12 19:59:38 -05009
10#endif /* __MAILBOX_H */