Skip to content
Snippets Groups Projects
Commit 89a8bd84 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Updated NOR boot logic from David Sidrane

parent 52f114a1
No related branches found
No related tags found
No related merge requests found
/*****************************************************************************
* configs/sama5d3x-ek/src/nor_main.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Copyright (C) 2013-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
......@@ -61,6 +61,15 @@
#define NOR_ENTRY ((nor_entry_t)SAM_EBICS0_VSECTION)
#define NOR_WAIT 1
#define NOR_NO_WAIT 0
#ifdef CONFIG_SAMA5D3xEK_NOR_START
# define NOR_BOOT_MODE NOR_NO_WAIT
#else
# define NOR_BOOT_MODE NOR_WAIT
#endif
/****************************************************************************
* Private Types
****************************************************************************/
......@@ -92,16 +101,9 @@ int nor_main(int argc, char *argv)
* to begin booting in NOR Flash
*/
static volatile uint32_t wait = 1;
static volatile uint32_t wait = NOR_BOOT_MODE;
#ifdef CONFIG_SAMA5D3xEK_NOR_START
printf("Configuring and booting from NOR FLASH on CS0\n");
wait = 0;
#else
printf("Configuring NOR FLASH on CS0 and waiting\n");
wait = 1;
#endif
printf("Configuring NOR FLASH on CS0 and %s\n", wait ? "waiting" : "booting");
/* Make sure that the SMC peripheral is enabled (But of course it is... we
* are executing from NOR FLASH now).
......@@ -191,12 +193,11 @@ int nor_main(int argc, char *argv)
/* Then jump into NOR flash */
while (!wait)
while (wait)
{
}
NOR_ENTRY();
return 0; /* We should not get here in either case */
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment