xref: /freebsd/sys/contrib/ncsw/integrations/fman_ucode.h (revision 91ebf7d76582a73ac4c0a32964e4d3912010671e)
10aeed3e9SJustin Hibbits /*-
20aeed3e9SJustin Hibbits  * Copyright (c) 2012 Semihalf.
30aeed3e9SJustin Hibbits  * All rights reserved.
40aeed3e9SJustin Hibbits  *
50aeed3e9SJustin Hibbits  * Redistribution and use in source and binary forms, with or without
60aeed3e9SJustin Hibbits  * modification, are permitted provided that the following conditions
70aeed3e9SJustin Hibbits  * are met:
80aeed3e9SJustin Hibbits  * 1. Redistributions of source code must retain the above copyright
90aeed3e9SJustin Hibbits  *    notice, this list of conditions and the following disclaimer.
100aeed3e9SJustin Hibbits  * 2. Redistributions in binary form must reproduce the above copyright
110aeed3e9SJustin Hibbits  *    notice, this list of conditions and the following disclaimer in the
120aeed3e9SJustin Hibbits  *    documentation and/or other materials provided with the distribution.
130aeed3e9SJustin Hibbits  *
140aeed3e9SJustin Hibbits  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
150aeed3e9SJustin Hibbits  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
160aeed3e9SJustin Hibbits  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
170aeed3e9SJustin Hibbits  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
180aeed3e9SJustin Hibbits  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
190aeed3e9SJustin Hibbits  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
200aeed3e9SJustin Hibbits  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
210aeed3e9SJustin Hibbits  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
220aeed3e9SJustin Hibbits  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
230aeed3e9SJustin Hibbits  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
240aeed3e9SJustin Hibbits  * SUCH DAMAGE.
250aeed3e9SJustin Hibbits  */
260aeed3e9SJustin Hibbits 
270aeed3e9SJustin Hibbits #ifndef FMAN_UCODE_H_
280aeed3e9SJustin Hibbits #define FMAN_UCODE_H_
290aeed3e9SJustin Hibbits 
300aeed3e9SJustin Hibbits /**
310aeed3e9SJustin Hibbits  * @file
320aeed3e9SJustin Hibbits  * Wrapper header for FMan uCode.
330aeed3e9SJustin Hibbits  *
340aeed3e9SJustin Hibbits  * We intentionally use the same uCode from p3041_r1.0.h file as all platforms
350aeed3e9SJustin Hibbits  * we're currently supporting uses the same version of uCode marked rel_101_8.
360aeed3e9SJustin Hibbits  */
370aeed3e9SJustin Hibbits 
380aeed3e9SJustin Hibbits /**
390aeed3e9SJustin Hibbits  * Header with actual uCode rel_101_8.
400aeed3e9SJustin Hibbits  */
41*91ebf7d7SJustin Hibbits #include "fman_ctrl_code/p3041_r1.0.h"
420aeed3e9SJustin Hibbits 
430aeed3e9SJustin Hibbits /**
440aeed3e9SJustin Hibbits  * Generic macro.
450aeed3e9SJustin Hibbits  */
460aeed3e9SJustin Hibbits #define	FMAN_UC_IMG	P3041_R1_0_UC_IMG
470aeed3e9SJustin Hibbits 
480aeed3e9SJustin Hibbits #endif /* FMAN_UCODE_H_ */
49