1*00a2749dSAllen Martin /* 2*00a2749dSAllen Martin * (C) Copyright 2010, 2011 3*00a2749dSAllen Martin * NVIDIA Corporation <www.nvidia.com> 4*00a2749dSAllen Martin * 5*00a2749dSAllen Martin * See file CREDITS for list of people who contributed to this 6*00a2749dSAllen Martin * project. 7*00a2749dSAllen Martin * 8*00a2749dSAllen Martin * This program is free software; you can redistribute it and/or 9*00a2749dSAllen Martin * modify it under the terms of the GNU General Public License as 10*00a2749dSAllen Martin * published by the Free Software Foundation; either version 2 of 11*00a2749dSAllen Martin * the License, or (at your option) any later version. 12*00a2749dSAllen Martin * 13*00a2749dSAllen Martin * This program is distributed in the hope that it will be useful, 14*00a2749dSAllen Martin * but WITHOUT ANY WARRANTY; without even the implied warranty of 15*00a2749dSAllen Martin * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16*00a2749dSAllen Martin * GNU General Public License for more details. 17*00a2749dSAllen Martin * 18*00a2749dSAllen Martin * You should have received a copy of the GNU General Public License 19*00a2749dSAllen Martin * along with this program; if not, write to the Free Software 20*00a2749dSAllen Martin * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21*00a2749dSAllen Martin * MA 02111-1307 USA 22*00a2749dSAllen Martin */ 23*00a2749dSAllen Martin 24*00a2749dSAllen Martin #ifndef _FLOW_H_ 25*00a2749dSAllen Martin #define _FLOW_H_ 26*00a2749dSAllen Martin 27*00a2749dSAllen Martin struct flow_ctlr { 28*00a2749dSAllen Martin u32 halt_cpu_events; 29*00a2749dSAllen Martin u32 halt_cop_events; 30*00a2749dSAllen Martin u32 cpu_csr; 31*00a2749dSAllen Martin u32 cop_csr; 32*00a2749dSAllen Martin u32 halt_cpu1_events; 33*00a2749dSAllen Martin u32 cpu1_csr; 34*00a2749dSAllen Martin }; 35*00a2749dSAllen Martin 36*00a2749dSAllen Martin #endif 37