From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Tyser Date: Wed, 19 Nov 2008 12:00:50 -0600 Subject: [U-Boot] [PATCH 3/3] XPedite5370 board support In-Reply-To: <49244D05.8020706@freescale.com> References: <1224800639-31350-1-git-send-email-ptyser@xes-inc.com> <1224800639-31350-2-git-send-email-ptyser@xes-inc.com> <1224800639-31350-3-git-send-email-ptyser@xes-inc.com> <1224800639-31350-4-git-send-email-ptyser@xes-inc.com> <20081118214435.61A7D832E89D@gemini.denx.de> <1227046406.3065.49.camel@localhost.localdomain> <20081118222038.5DC77832E89D@gemini.denx.de> <1227047989.3065.73.camel@localhost.localdomain> <49244D05.8020706@freescale.com> Message-ID: <1227117650.3065.124.camel@localhost.localdomain> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Jon, On Wed, 2008-11-19 at 11:29 -0600, Jon Loeliger wrote: > Peter Tyser wrote: > > >>> We have the standard Freescale DDR printf's turned into debug as that is > >>> much, much more verbose than the output above. > >> Indeed :-( > > Hrm. Out of curiosity, which printf()s do you find noisy? There are some printf()s related to chip/bank interleaving in cpu/mpc8xxx/main.c: printf("\nMemory controller interleaving enabled: "); printf("Cache-line interleaving!\n"); printf("Bank(chip-select) interleaving enabled: "); printf("CS0+CS1 and CS2+CS3\n"); I do think the info is useful, just a bit wordy (and are the !'s necessary:). With those printfs in main.c enabled, there could be 4 printf lines on bootup related to DDR - clocking, size, and 2 for interleaving. > > Many boards I look at don't use TABS. In particular Freescale reference > > platforms. Many boards even have different amounts of spaces:) I don't > > see the value of indentation in this case as it doesn't increase > > readability and just makes already long lines even longer. > > Really? Which ones? We should clean those up! The MPC8548CDS and MPC8349EMDS headers were the 2 I looked at that had inconsistent spacing, but I didn't look all that thoroughly. An 'ls include/configs/MPC* | xargs grep -i "^\ \+\""' should show the boards which don't use proper indentation for the environment variables in general. So much cleanup, so little time:) Best, Peter