1/* Definitions for the Blackfin port needed for option handling.
2   Copyright (C) 2005-2022 Free Software Foundation, Inc.
3
4   This file is part of GCC.
5
6   GCC is free software; you can redistribute it and/or modify it
7   under the terms of the GNU General Public License as published
8   by the Free Software Foundation; either version 3, or (at your
9   option) any later version.
10
11   GCC is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14   License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with GCC; see the file COPYING3.  If not see
18   <http://www.gnu.org/licenses/>.  */
19
20#ifndef BFIN_OPTS_H
21#define BFIN_OPTS_H
22
23/* CPU type.  */
24typedef enum bfin_cpu_type
25{
26  BFIN_CPU_UNKNOWN,
27  BFIN_CPU_BF512,
28  BFIN_CPU_BF514,
29  BFIN_CPU_BF516,
30  BFIN_CPU_BF518,
31  BFIN_CPU_BF522,
32  BFIN_CPU_BF523,
33  BFIN_CPU_BF524,
34  BFIN_CPU_BF525,
35  BFIN_CPU_BF526,
36  BFIN_CPU_BF527,
37  BFIN_CPU_BF531,
38  BFIN_CPU_BF532,
39  BFIN_CPU_BF533,
40  BFIN_CPU_BF534,
41  BFIN_CPU_BF536,
42  BFIN_CPU_BF537,
43  BFIN_CPU_BF538,
44  BFIN_CPU_BF539,
45  BFIN_CPU_BF542,
46  BFIN_CPU_BF542M,
47  BFIN_CPU_BF544,
48  BFIN_CPU_BF544M,
49  BFIN_CPU_BF547,
50  BFIN_CPU_BF547M,
51  BFIN_CPU_BF548,
52  BFIN_CPU_BF548M,
53  BFIN_CPU_BF549,
54  BFIN_CPU_BF549M,
55  BFIN_CPU_BF561,
56  BFIN_CPU_BF592
57} bfin_cpu_t;
58
59#endif
60