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 | # Kinetis K6X MCU line
# Copyright (c) 2016 Open-RnD Sp. z o.o.
# SPDX-License-Identifier: Apache-2.0
choice
prompt "Kinetis K6x MCU Selection"
depends on SOC_SERIES_KINETIS_K6X
config SOC_MK64F12
bool "SOC_MK64F12"
select HAS_MCUX
select HAS_MCUX_ADC16
select HAS_MCUX_ENET
select HAS_MCUX_FLEXCAN
select HAS_MCUX_FTFX
select HAS_MCUX_FTM
select HAS_MCUX_RNGA
select HAS_MCUX_SIM
select HAS_OSC
select HAS_MCG
select CPU_HAS_FPU
select HAS_MCUX_RTC
select HAS_MCUX_DAC
config SOC_MK66F18
bool "SOC_MK66F18"
select HAS_MCUX
select HAS_MCUX_ADC16
select HAS_MCUX_ENET
select HAS_MCUX_FLEXCAN
select HAS_MCUX_FTFX
select HAS_MCUX_FTM
select HAS_MCUX_RNGA
select HAS_MCUX_SIM
select HAS_OSC
select HAS_MCG
select CPU_HAS_FPU
select HAS_MCUX_RTC
endchoice
if SOC_SERIES_KINETIS_K6X
config SOC_PART_NUMBER_MK64FN1M0CAJ12
bool
config SOC_PART_NUMBER_MK64FN1M0VDC12
bool
config SOC_PART_NUMBER_MK64FN1M0VLL12
bool
config SOC_PART_NUMBER_MK64FN1M0VLQ12
bool
config SOC_PART_NUMBER_MK64FN1M0VMD12
bool
config SOC_PART_NUMBER_MK64FX512VDC12
bool
config SOC_PART_NUMBER_MK64FX512VLL12
bool
config SOC_PART_NUMBER_MK64FX512VLQ12
bool
config SOC_PART_NUMBER_MK64FX512VMD12
bool
config SOC_PART_NUMBER_MK66FN2M0VMD18
bool
config SOC_PART_NUMBER_KINETIS_K6X
string
default "MK64FN1M0CAJ12" if SOC_PART_NUMBER_MK64FN1M0CAJ12
default "MK64FN1M0VDC12" if SOC_PART_NUMBER_MK64FN1M0VDC12
default "MK64FN1M0VLL12" if SOC_PART_NUMBER_MK64FN1M0VLL12
default "MK64FN1M0VLQ12" if SOC_PART_NUMBER_MK64FN1M0VLQ12
default "MK64FN1M0VMD12" if SOC_PART_NUMBER_MK64FN1M0VMD12
default "MK64FX512VDC12" if SOC_PART_NUMBER_MK64FX512VDC12
default "MK64FX512VLL12" if SOC_PART_NUMBER_MK64FX512VLL12
default "MK64FX512VLQ12" if SOC_PART_NUMBER_MK64FX512VLQ12
default "MK64FX512VMD12" if SOC_PART_NUMBER_MK64FX512VMD12
default "MK66FN2M0VMD18" if SOC_PART_NUMBER_MK66FN2M0VMD18
help
This string holds the full part number of the SoC. It is a hidden option
that you should not set directly. The part number selection choice defines
the default value for this string.
config K6X_CORE_CLOCK_DIVIDER
int "Freescale K6X core clock divider"
default 1
help
This option specifies the divide value for the K6X processor core clock
from the system clock.
config K6X_BUS_CLOCK_DIVIDER
int "Freescale K6X bus clock divider"
default 2
help
This option specifies the divide value for the K6X bus clock from the
system clock.
config K6X_FLEXBUS_CLOCK_DIVIDER
int "Freescale K6X FlexBus clock divider"
default 3
help
This option specifies the divide value for the K6X FlexBus clock from the
system clock.
config K6X_FLASH_CLOCK_DIVIDER
int "Freescale K6X flash clock divider"
default 5
help
This option specifies the divide value for the K6X flash clock from the
system clock.
endif # SOC_SERIES_KINETIS_K6X
|