blob: 415fc890d880e8828774f8f4ba48eb7eb8718b17 [file] [log] [blame]
Sonic Zhang371e6dc2013-05-03 00:39:35 +00001choice
2 prompt "Target CPU"
3 depends on BR2_bfin
4 default BR2_bf609
5 help
6 Specify target CPU
7config BR2_bf606
8 bool "bf606"
9config BR2_bf607
10 bool "bf607"
11config BR2_bf608
12 bool "bf608"
13config BR2_bf609
14 bool "bf609"
15config BR2_bf512
16 bool "bf512"
17config BR2_bf514
18 bool "bf514"
19config BR2_bf516
20 bool "bf516"
21config BR2_bf518
22 bool "bf518"
23config BR2_bf522
24 bool "bf522"
25config BR2_bf523
26 bool "bf523"
27config BR2_bf524
28 bool "bf524"
29config BR2_bf525
30 bool "bf525"
31config BR2_bf526
32 bool "bf526"
33config BR2_bf527
34 bool "bf527"
35config BR2_bf531
36 bool "bf531"
37config BR2_bf532
38 bool "bf532"
39config BR2_bf533
40 bool "bf533"
41config BR2_bf534
42 bool "bf534"
43config BR2_bf536
44 bool "bf536"
45config BR2_bf537
46 bool "bf537"
47config BR2_bf538
48 bool "bf538"
49config BR2_bf539
50 bool "bf539"
51config BR2_bf542
52 bool "bf542"
53config BR2_bf544
54 bool "bf544"
55config BR2_bf547
56 bool "bf547"
57config BR2_bf548
58 bool "bf548"
59config BR2_bf549
60 bool "bf549"
61config BR2_bf561
62 bool "bf561"
63endchoice
64
Thomas Petazzoni44c04a22012-11-15 03:53:48 +000065config BR2_ARCH
66 default "bfin"
67
68config BR2_ENDIAN
Thomas Petazzoni8211ee32013-07-16 10:03:25 +020069 default "LITTLE"
Sonic Zhang371e6dc2013-05-03 00:39:35 +000070
71config BR2_GCC_TARGET_CPU
72 default bf606 if BR2_bf606
73 default bf607 if BR2_bf607
74 default bf608 if BR2_bf608
75 default bf609 if BR2_bf609
76 default bf512 if BR2_bf512
77 default bf514 if BR2_bf514
78 default bf516 if BR2_bf516
79 default bf518 if BR2_bf518
80 default bf522 if BR2_bf522
81 default bf523 if BR2_bf523
82 default bf524 if BR2_bf524
83 default bf525 if BR2_bf525
84 default bf526 if BR2_bf526
85 default bf527 if BR2_bf527
86 default bf531 if BR2_bf531
87 default bf532 if BR2_bf532
88 default bf533 if BR2_bf533
89 default bf534 if BR2_bf534
90 default bf536 if BR2_bf536
91 default bf537 if BR2_bf537
92 default bf538 if BR2_bf538
93 default bf539 if BR2_bf539
94 default bf542 if BR2_bf542
95 default bf544 if BR2_bf544
96 default bf547 if BR2_bf547
97 default bf548 if BR2_bf548
98 default bf549 if BR2_bf549
99 default bf561 if BR2_bf561
Sonic Zhang66d41892013-05-03 00:39:36 +0000100
101config BR2_GCC_TARGET_CPU_REVISION
102 string "Target CPU revision"
103 help
104 Specify a target CPU revision, which will be appended to the
105 value of the -mcpu option. For example, if the selected CPU is
106 bf609, and then selected CPU revision is "0.0", then gcc will
107 receive the -mcpu=bf609-0.0 option.