Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | menu "Processor type and features" source "kernel/time/Kconfig" choice prompt "H8/300 platform" default H8300H_GENERIC config H8300H_GENERIC bool "H8/300H Generic" help H8/300H CPU Generic Hardware Support config H8300H_AKI3068NET bool "AE-3068/69" select H83068 help AKI-H8/3068F / AKI-H8/3069F Flashmicom LAN Board Support More Information. (Japanese Only) <http://akizukidenshi.com/catalog/default.aspx> AE-3068/69 Evaluation Board Support More Information. <http://www.microtronique.com/ae3069lan.htm> config H8300H_H8MAX bool "H8MAX" select H83068 help H8MAX Evaluation Board Support More Information. (Japanese Only) <http://strawberry-linux.com/h8/index.html> config H8300H_SIM bool "H8/300H Simulator" select H83007 help GDB Simulator Support More Information. <http://sourceware.org/sid/> config H8S_GENERIC bool "H8S Generic" help H8S CPU Generic Hardware Support config H8S_EDOSK2674 bool "EDOSK-2674" select H8S2678 help Renesas EDOSK-2674 Evaluation Board Support More Information. <http://www.azpower.com/H8-uClinux/index.html> <http://www.renesas.eu/products/tools/introductory_evaluation_tools/evaluation_development_os_kits/edosk2674r/edosk2674r_software_tools_root.jsp> config H8S_SIM bool "H8S Simulator" help GDB Simulator Support More Information. <http://sourceware.org/sid/> endchoice choice prompt "CPU Selection" config H83002 bool "H8/3001,3002,3003" select CPU_H8300H config H83007 bool "H8/3006,3007" select CPU_H8300H config H83048 bool "H8/3044,3045,3046,3047,3048,3052" select CPU_H8300H config H83068 bool "H8/3065,3066,3067,3068,3069" select CPU_H8300H config H8S2678 bool "H8S/2670,2673,2674R,2675,2676" select CPU_H8S endchoice config CPU_CLOCK int "CPU Clock Frequency (/1KHz)" default "20000" help CPU Clock Frequency divide to 1000 choice prompt "Kernel executes from" ---help--- Choose the memory type that the kernel will be running in. config RAMKERNEL bool "RAM" help The kernel will be resident in RAM when running. config ROMKERNEL bool "ROM" help The kernel will be resident in FLASH/ROM when running. endchoice config CPU_H8300H bool depends on (H83002 || H83007 || H83048 || H83068) default y config CPU_H8S bool depends on H8S2678 default y choice prompt "Timer" config H8300_TIMER8 bool "8bit timer (2ch cascade)" depends on (H83007 || H83068 || H8S2678) config H8300_TIMER16 bool "16bit timer" depends on (H83007 || H83068) config H8300_ITU bool "ITU" depends on (H83002 || H83048) config H8300_TPU bool "TPU" depends on H8S2678 endchoice if H8300_TIMER8 choice prompt "Timer Channel" config H8300_TIMER8_CH0 bool "Channel 0" config H8300_TIMER8_CH2 bool "Channel 2" depends on CPU_H8300H endchoice endif config H8300_TIMER16_CH int "16bit timer channel (0 - 2)" depends on H8300_TIMER16 range 0 2 config H8300_ITU_CH int "ITU channel" depends on H8300_ITU config H8300_TPU_CH int "TPU channel" depends on H8300_TPU config PREEMPT bool "Preemptible Kernel" default n source "mm/Kconfig" endmenu |