Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 123822
b: refs/heads/master
c: e7aa6f4
h: refs/heads/master
v: v3
  • Loading branch information
Ben Dooks committed Dec 16, 2008
1 parent dfa498c commit 638dffc
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7d2dbcf9faad074c52a941d01fc21eea3c95ca33
refs/heads/master: e7aa6f46f6e4644d466e04f54b5750a91d188abf
8 changes: 8 additions & 0 deletions trunk/arch/arm/plat-s3c/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ config S3C_BOOT_ERROR_RESET
Say y here to use the watchdog to reset the system if the
kernel decompressor detects an error during decompression.

config S3C_BOOT_UART_FORCE_FIFO
bool "Force UART FIFO on during boot process"
depends on PLAT_S3C
default y
help
Say Y here to force the UART FIFOs on during the kernel
uncompressor

comment "Power management"

config S3C2410_PM_DEBUG
Expand Down
28 changes: 28 additions & 0 deletions trunk/arch/arm/plat-s3c/include/plat/uncompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,28 @@ static void arch_decomp_error(const char *x)

static void error(char *err);

#ifdef CONFIG_S3C_BOOT_UART_FORCE_FIFO
static inline void arch_enable_uart_fifo(void)
{
u32 fifocon = uart_rd(S3C2410_UFCON);

if (!(fifocon & S3C2410_UFCON_FIFOMODE)) {
fifocon |= S3C2410_UFCON_RESETBOTH;
uart_wr(S3C2410_UFCON, fifocon);

/* wait for fifo reset to complete */
while (1) {
fifocon = uart_rd(S3C2410_UFCON);
if (!(fifocon & S3C2410_UFCON_RESETBOTH))
break;
}
}
}
#else
#define arch_enable_uart_fifo() do { } while(0)
#endif


static void
arch_decomp_setup(void)
{
Expand All @@ -149,6 +171,12 @@ arch_decomp_setup(void)

arch_detect_cpu();
arch_decomp_wdog_start();

/* Enable the UART FIFOs if they where not enabled and our
* configuration says we should turn them on.
*/

arch_enable_uart_fifo();
}


Expand Down

0 comments on commit 638dffc

Please sign in to comment.