diff --git a/arch/arm/src/sam3u/sam3u_clockconfig.c b/arch/arm/src/sam3u/sam3u_clockconfig.c
index 6ff3c8329b7f1a4687a2473ecbca6dfe6520ea01..0093368e9fc6780d0b2539ce42afee17694e30fb 100755
--- a/arch/arm/src/sam3u/sam3u_clockconfig.c
+++ b/arch/arm/src/sam3u/sam3u_clockconfig.c
@@ -144,7 +144,7 @@ static inline void sam3u_supcsetup(void)
  * Name: sam3u_pmcwait
  *
  * Description:
- *   Initialize clocking
+ *   Wait for the specide PMC status bit to become "1"
  *
  ****************************************************************************/
 
@@ -168,31 +168,58 @@ static inline void sam3u_pmcsetup(void)
 {
   uint32_t regval;
 
-  /* Initialize main oscillator (if it has not already been selected */
+  /* Enable main oscillator (if it has not already been selected) */
 
   if ((getreg32(SAM3U_CKGR_MOR) & CKGR_MOR_MOSCSEL) == 0)
     {
+      /* "When the MOSCXTEN bit and the MOSCXTCNT are written in CKGR_MOR to
+       *  enable the main oscillator, the MOSCXTS bit in the Power Management
+       *  Controller Status Register (PMC_SR) is cleared and the counter starts
+       *  counting down on the slow clock divided by 8 from the MOSCXTCNT
+       *  value. ... When the counter reaches 0, the MOSCXTS bit is set,
+       *  indicating that the main clock is valid."
+       */
+
       putreg32(BOARD_CKGR_MOR, SAM3U_CKGR_MOR);
       sam3u_pmcwait(PMC_INT_MOSCXTS);
     }
  
-  /* Switch to the main oscillator */
+  /* "Switch to the main oscillator.  The selection is made by writing the
+   *  MOSCSEL bit in the Main Oscillator Register (CKGR_MOR). The switch of
+   *  the Main Clock source is glitch free, so there is no need to run out
+   *  of SLCK, PLLACK or UPLLCK in order to change the selection. The MOSCSELS
+   *  bit of the power Management Controller Status Register (PMC_SR) allows
+   *  knowing when the switch sequence is done."
+   *
+   *   MOSCSELS: Main Oscillator Selection Status
+   *             0 = Selection is done
+   *             1 = Selection is in progress
+   */
 
   putreg32((BOARD_CKGR_MOR|CKGR_MOR_MOSCSEL), SAM3U_CKGR_MOR);
   sam3u_pmcwait(PMC_INT_MOSCSELS);
 
+  /* "Select the master clock. "The Master Clock selection is made by writing
+   *  the CSS field (Clock Source Selection) in PMC_MCKR (Master Clock Register).
+   *  The prescaler supports the division by a power of 2 of the selected clock
+   *  between 1 and 64, and the division by 3. The PRES field in PMC_MCKR programs
+   *  the prescaler. Each time PMC_MCKR is written to define a new Master Clock,
+   *  the MCKRDY bit is cleared in PMC_SR. It reads 0 until the Master Clock is
+   *  established.
+   */
+
   regval = getreg32(SAM3U_PMC_MCKR);
   regval &= ~PMC_MCKR_CSS_MASK;
   regval |= PMC_MCKR_CSS_MAIN;
   putreg32(regval, SAM3U_PMC_MCKR);
   sam3u_pmcwait(PMC_INT_MCKRDY);
 
-  /* Settup PLLA */
+  /* Settup PLLA and wait for LOCKA */
 
   putreg32(BOARD_CKGR_PLLAR, SAM3U_CKGR_PLLAR);
   sam3u_pmcwait(PMC_INT_LOCKA);
 
-  /* Setup UTMI for USB */
+  /* Setup UTMI for USB and wait for LOCKU */
 
 #ifdef CONFIG_USBDEV
   regval = getreg32(SAM3U_CKGR_UCKR);
@@ -201,7 +228,7 @@ static inline void sam3u_pmcsetup(void)
   sam3u_pmcwait(PMC_INT_LOCKU);
 #endif
 
-  /* Switch to the fast clock */
+  /* Switch to the fast clock and wait for MCKRDY */
 
   putreg32(BOARD_PMC_MCKR_FAST, SAM3U_PMC_MCKR);
   sam3u_pmcwait(PMC_INT_MCKRDY);
diff --git a/arch/arm/src/sam3u/sam3u_lowputc.c b/arch/arm/src/sam3u/sam3u_lowputc.c
index fe5b38aa5a0bb3e0d8c8621d6b0bfe14e898bde6..a5cf813628b472e9689ada3a1b9214622af151ce 100755
--- a/arch/arm/src/sam3u/sam3u_lowputc.c
+++ b/arch/arm/src/sam3u/sam3u_lowputc.c
@@ -243,7 +243,7 @@ void sam3u_lowsetup(void)
   /* Enable clocking for all selected UART/USARTs */
 
   regval = getreg32(SAM3U_PMC_PCER);
-#ifdef CONFIG_SAM3U_USART
+#ifdef CONFIG_SAM3U_UART
   regval |= (1 << SAM3U_PID_UART);
 #endif
 #ifdef CONFIG_SAM3U_USART0
@@ -262,7 +262,7 @@ void sam3u_lowsetup(void)
 
   /* Configure UART pins for all selected UART/USARTs */
  
-#ifdef CONFIG_SAM3U_USART
+#ifdef CONFIG_SAM3U_UART
   (void)sam3u_configgpio(GPIO_UART_RXD);
   (void)sam3u_configgpio(GPIO_UART_TXD);
 #endif
diff --git a/arch/arm/src/sam3u/sam3u_pio.c b/arch/arm/src/sam3u/sam3u_pio.c
index 717f00423832aac926e9c6b518cc5944fd89c787..ab3d746ba317fdb60e15de108656e0d9b4662391 100755
--- a/arch/arm/src/sam3u/sam3u_pio.c
+++ b/arch/arm/src/sam3u/sam3u_pio.c
@@ -241,7 +241,7 @@ static inline int sam3u_configperiph(uintptr_t base, uint32_t pin,
     {
       regval |= pin;
     }
-  putreg32(pin, base+SAM3U_PIO_ABSR_OFFSET);
+  putreg32(regval, base+SAM3U_PIO_ABSR_OFFSET);
 
   /* Disable PIO functionality */