:orphan: .. title:: DCACHE_LINE_SIZE .. option:: CONFIG_DCACHE_LINE_SIZE *d-cache line size* Type: ``int`` Help ==== Size in bytes of a CPU d-cache line. If this is set to 0 the value is obtained from the 'd-cache-line-size' DT property instead if present. Detect automatically at runtime by selecting DCACHE_LINE_SIZE_DETECT. Direct dependencies =================== \ :option:`ARC ` || (!\ :option:`X86_64 ` && \ :option:`X86 `) || \ :option:`CACHE_MANAGEMENT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 32 - 64 if \ :option:`CPU_ATOM ` - 0 Kconfig definitions =================== .. highlight:: kconfig At ``arch/arc/Kconfig:285`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → ARC Options → ARCv2 Family Options .. parsed-literal:: config DCACHE_LINE_SIZE int default 32 depends on \ :option:`ARC ` ---- At ``arch/x86/core/Kconfig.ia32:153`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` → ``arch/x86/Kconfig:319`` Menu path: (Top) → X86 Architecture Options → Processor Capabilities .. parsed-literal:: config DCACHE_LINE_SIZE int default 64 if \ :option:`CPU_ATOM ` depends on !\ :option:`X86_64 ` && \ :option:`X86 ` ---- At ``arch/Kconfig:805`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` Menu path: (Top) → Cache Options → Enable cache management features .. parsed-literal:: config DCACHE_LINE_SIZE int "d-cache line size" if !\ :option:`DCACHE_LINE_SIZE_DETECT ` default 0 depends on \ :option:`CACHE_MANAGEMENT ` help Size in bytes of a CPU d-cache line. If this is set to 0 the value is obtained from the 'd-cache-line-size' DT property instead if present. Detect automatically at runtime by selecting DCACHE_LINE_SIZE_DETECT. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*