diff src/cs/system/main/init.c @ 192:4f40ae165be4

abb.c & init.c: sync with Magnetite for Luna additions These Luna target-specific additions are conditionalized on CONFIG_TARGET_LUNA, a C preprocessor symbol that will never be defined in Selenite, hence this change has exactly zero impact on FC Selenite. However, they are being pulled in as a sync in order to keep the diff between Magnetite and Selenite to a minimum; keeping this diff to a minimum increases our opportunities for possible evolution of future FC firmwares.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 23 May 2020 07:03:46 +0000
parents aa2956979fcb
children 712a28fda778
line wrap: on
line diff
--- a/src/cs/system/main/init.c	Fri May 22 18:04:44 2020 +0000
+++ b/src/cs/system/main/init.c	Sat May 23 07:03:46 2020 +0000
@@ -557,6 +557,16 @@
         MEM_INIT_CS2(6, MEM_DVS_16, MEM_WRITE_EN, 0);
         MEM_INIT_CS3(3, MEM_DVS_16, MEM_WRITE_EN, 0);
         MEM_INIT_CS4(0, MEM_DVS_8,  MEM_WRITE_EN, 0);
+      #elif defined(CONFIG_TARGET_LUNA)
+        /*
+         * nCS0 is flash, nCS1 is XRAM, the LCD is connected to nCS3.
+         * nCS2 and nCS4 are currently unused.
+         */
+        MEM_INIT_CS0(4, MEM_DVS_16, MEM_WRITE_EN, 0);
+        MEM_INIT_CS1(4, MEM_DVS_16, MEM_WRITE_EN, 0);
+        MEM_INIT_CS2(4, MEM_DVS_16, MEM_WRITE_EN, 0);
+        MEM_INIT_CS3(5, MEM_DVS_16, MEM_WRITE_EN, 1);
+        MEM_INIT_CS4(0, MEM_DVS_8,  MEM_WRITE_EN, 0);
       #elif (CHIPSET == 8)
         /*
          * Our only Calypso C05 target is Mother Mychaela's D-Sample board.