]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - arch/Config.in.bfin
arch: remove BR2_ARCH_HAS_ATOMICS option
[coffee/buildroot.git] / arch / Config.in.bfin
1 choice
2         prompt "Target CPU"
3         depends on BR2_bfin
4         default BR2_bf609
5         help
6           Specify target CPU
7 config BR2_bf606
8         bool "bf606"
9 config BR2_bf607
10         bool "bf607"
11 config BR2_bf608
12         bool "bf608"
13 config BR2_bf609
14         bool "bf609"
15 config BR2_bf512
16         bool "bf512"
17 config BR2_bf514
18         bool "bf514"
19 config BR2_bf516
20         bool "bf516"
21 config BR2_bf518
22         bool "bf518"
23 config BR2_bf522
24         bool "bf522"
25 config BR2_bf523
26         bool "bf523"
27 config BR2_bf524
28         bool "bf524"
29 config BR2_bf525
30         bool "bf525"
31 config BR2_bf526
32         bool "bf526"
33 config BR2_bf527
34         bool "bf527"
35 config BR2_bf531
36         bool "bf531"
37 config BR2_bf532
38         bool "bf532"
39 config BR2_bf533
40         bool "bf533"
41 config BR2_bf534
42         bool "bf534"
43 config BR2_bf536
44         bool "bf536"
45 config BR2_bf537
46         bool "bf537"
47 config BR2_bf538
48         bool "bf538"
49 config BR2_bf539
50         bool "bf539"
51 config BR2_bf542
52         bool "bf542"
53 config BR2_bf544
54         bool "bf544"
55 config BR2_bf547
56         bool "bf547"
57 config BR2_bf548
58         bool "bf548"
59 config BR2_bf549
60         bool "bf549"
61 config BR2_bf561
62         bool "bf561"
63 endchoice
64
65 config BR2_ARCH
66         default "bfin"
67
68 config BR2_ENDIAN
69         default "LITTLE"
70
71 config 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
100
101 config 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.