/* SPDX-License-Identifier: GPL-2.0 */ /* * Support for Intel Camera Imaging ISP subsystem. * Copyright (c) 2010-2015, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope 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 _EVENT_FIFO_LOCAL_H #define _EVENT_FIFO_LOCAL_H /* * All events come from connections mapped on the system * bus but do not use a global IRQ */ #include "event_fifo_global.h" event_ID_t; #define EVENT_QUERY_BIT … /* Events are read from FIFO */ static const hrt_address event_source_addr[N_EVENT_ID] = …; /* Read from FIFO are blocking, query data availability */ static const hrt_address event_source_query_addr[N_EVENT_ID] = …; /* Events are written to FIFO */ static const hrt_address event_sink_addr[N_EVENT_ID] = …; /* Writes to FIFO are blocking, query data space */ static const hrt_address event_sink_query_addr[N_EVENT_ID] = …; #endif /* _EVENT_FIFO_LOCAL_H */