public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
@ 2009-07-15 15:56 Dimitar Dimitrov
  2009-07-15 15:58 ` [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC Dimitar Dimitrov
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Dimitar Dimitrov @ 2009-07-15 15:56 UTC (permalink / raw)
  To: u-boot

This is my third try for Olimex SAM9-L9260/61 board support patches. 

Here follows the first patch.
---

Boards utilizing the Atmel LCD driver can now specify that the LCD clock must
be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK.
---
 README                      |    5 +++++
 drivers/video/atmel_lcdfb.c |    3 +++
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/README b/README
index de700bd..d7c0afe 100644
--- a/README
+++ b/README
@@ -1063,6 +1063,11 @@ The following options need to be configured:
 		Normally display is black on white background; define
 		CONFIG_SYS_WHITE_ON_BLACK to get it inverted.
 
+		CONFIG_LCD_INVERTED_CLOCK
+		Define this if your LCD needs inverted clock polarity. Note
+		that this feature will work only if the selected LCD driver 
+		and hardware controller support it.
+
 - Splash Screen Support: CONFIG_SPLASH_SCREEN
 
 		If this option is set, the environment is checked for
diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c
index db86763..d3e988e 100644
--- a/drivers/video/atmel_lcdfb.c
+++ b/drivers/video/atmel_lcdfb.c
@@ -112,6 +112,9 @@ void lcd_ctrl_init(void *lcdbase)
 
 	value |= panel_info.vl_sync;
 	value |= (panel_info.vl_bpix << 5);
+#if defined(CONFIG_LCD_INVERTED_CLOCK)
+	value |= ATMEL_LCDC_INVCLK_INVERTED;
+#endif
 	lcdc_writel(panel_info.mmio, ATMEL_LCDC_LCDCON2, value);
 
 	/* Vertical timing */
-- 
1.5.6.1

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC
  2009-07-15 15:56 [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Dimitar Dimitrov
@ 2009-07-15 15:58 ` Dimitar Dimitrov
  2009-07-18 21:09   ` Jean-Christophe PLAGNIOL-VILLARD
  2009-07-15 16:00 ` [U-Boot] [PATCH 03/03 v3] Add support for Olimex SAM9-L9260 SBC Dimitar Dimitrov
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 13+ messages in thread
From: Dimitar Dimitrov @ 2009-07-15 15:58 UTC (permalink / raw)
  To: u-boot

The SAM9-L9261 board support is based on code for AT91SAM9261EK. Networking
is missing and will be added after the DM9000 support for AT91 boards is
fixed to comply with U-Boot guide-lines.
---
 MAINTAINERS                          |    3 +
 MAKEALL                              |    1 +
 Makefile                             |   17 +++
 board/olimex/sam9_l9261/Makefile     |   56 ++++++++
 board/olimex/sam9_l9261/config.mk    |    1 +
 board/olimex/sam9_l9261/led.c        |   43 +++++++
 board/olimex/sam9_l9261/partition.c  |   40 ++++++
 board/olimex/sam9_l9261/sam9_l9261.c |  214 +++++++++++++++++++++++++++++++
 include/configs/sam9_l9261.h         |  230 ++++++++++++++++++++++++++++++++++
 tools/Makefile                       |    3 +
 tools/logos/olimex.bmp               |  Bin 0 -> 27510 bytes
 11 files changed, 608 insertions(+), 0 deletions(-)
 create mode 100644 board/olimex/sam9_l9261/Makefile
 create mode 100644 board/olimex/sam9_l9261/config.mk
 create mode 100644 board/olimex/sam9_l9261/led.c
 create mode 100644 board/olimex/sam9_l9261/partition.c
 create mode 100644 board/olimex/sam9_l9261/sam9_l9261.c
 create mode 100644 include/configs/sam9_l9261.h
 create mode 100644 tools/logos/olimex.bmp

diff --git a/MAINTAINERS b/MAINTAINERS
index 575a7ec..dfcccf5 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -133,6 +133,9 @@ Jon Diekema <jon.diekema@smiths-aerospace.com>
 
 	sbc8260		MPC8260
 
+Dimitar Dimitrov <dinuxbg@gmail.com>
+	sam9_l9261	AT91SAM9261
+
 Dirk Eibach <eibach@gdsys.de>
 
 	gdppc440etx	PPC440EP/GR
diff --git a/MAKEALL b/MAKEALL
index 020ff73..ecabfcf 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -599,6 +599,7 @@ LIST_at91="			\
 	m501sk			\
 	pm9261			\
 	pm9263			\
+	sam9_l9261		\
 "
 
 #########################################################################
diff --git a/Makefile b/Makefile
index 090e645..b19c3b0 100644
--- a/Makefile
+++ b/Makefile
@@ -2847,6 +2847,23 @@ at91sam9g45ekes_config	:	unconfig
 pm9263_config	:	unconfig
 	@$(MKCONFIG) $(@:_config=) arm arm926ejs pm9263 ronetix at91
 
+sam9_l9261_nandflash_config \
+sam9_l9261_dataflash_cs0_config \
+sam9_l9261_dataflash_cs3_config \
+sam9_l9261_config	:	unconfig
+	@mkdir -p $(obj)include
+	@if [ "$(findstring _nandflash,$@)" ] ; then \
+		echo "#define CONFIG_SYS_USE_NANDFLASH 1"	>>$(obj)include/config.h ; \
+		$(XECHO) "... with environment variable in NAND FLASH" ; \
+	elif [ "$(findstring dataflash_cs3,$@)" ] ; then \
+		echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1"	>>$(obj)include/config.h ; \
+		$(XECHO) "... with environment variable in SPI DATAFLASH CS3" ; \
+	else \
+		echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1"	>>$(obj)include/config.h ; \
+		$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
+	fi;
+	@$(MKCONFIG) -a sam9_l9261 arm arm926ejs sam9_l9261 olimex  at91
+
 ########################################################################
 ## ARM Integrator boards - see doc/README-integrator for more info.
 integratorap_config	\
diff --git a/board/olimex/sam9_l9261/Makefile b/board/olimex/sam9_l9261/Makefile
new file mode 100644
index 0000000..3a1e163
--- /dev/null
+++ b/board/olimex/sam9_l9261/Makefile
@@ -0,0 +1,56 @@
+#
+# (C) Copyright 2003-2008
+# Wolfgang Denk, DENX Software Engineering, wd at denx.de.
+#
+# (C) Copyright 2008
+# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Lead Tech Design <www.leadtechdesign.com>
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+
+include $(TOPDIR)/config.mk
+
+LIB	= $(obj)lib$(BOARD).a
+
+COBJS-y += sam9_l9261.o
+COBJS-y += led.o
+COBJS-$(CONFIG_HAS_DATAFLASH) += partition.o
+
+SRCS	:= $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
+OBJS	:= $(addprefix $(obj),$(COBJS-y))
+SOBJS	:= $(addprefix $(obj),$(SOBJS))
+
+$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
+	$(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
+
+clean:
+	rm -f $(SOBJS) $(OBJS)
+
+distclean:	clean
+	rm -f $(LIB) core *.bak $(obj).depend
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
diff --git a/board/olimex/sam9_l9261/config.mk b/board/olimex/sam9_l9261/config.mk
new file mode 100644
index 0000000..ff2cfd1
--- /dev/null
+++ b/board/olimex/sam9_l9261/config.mk
@@ -0,0 +1 @@
+TEXT_BASE = 0x23f00000
diff --git a/board/olimex/sam9_l9261/led.c b/board/olimex/sam9_l9261/led.c
new file mode 100644
index 0000000..5d1c5f2
--- /dev/null
+++ b/board/olimex/sam9_l9261/led.c
@@ -0,0 +1,43 @@
+/*
+ * (C) Copyright 2007-2008
+ * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Lead Tech Design <www.leadtechdesign.com>
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#include <common.h>
+#include <asm/arch/at91sam9261.h>
+#include <asm/arch/at91_pmc.h>
+#include <asm/arch/gpio.h>
+#include <asm/arch/io.h>
+
+void coloured_LED_init(void)
+{
+	/* Enable clock */
+	at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9261_ID_PIOA);
+
+	at91_set_gpio_output(CONFIG_RED_LED, 1);
+	at91_set_gpio_output(CONFIG_GREEN_LED, 1);
+	at91_set_gpio_output(CONFIG_YELLOW_LED, 1);
+
+	at91_set_gpio_value(CONFIG_RED_LED, 0);
+	at91_set_gpio_value(CONFIG_GREEN_LED, 1);
+	at91_set_gpio_value(CONFIG_YELLOW_LED, 1);
+}
diff --git a/board/olimex/sam9_l9261/partition.c b/board/olimex/sam9_l9261/partition.c
new file mode 100644
index 0000000..c739b11
--- /dev/null
+++ b/board/olimex/sam9_l9261/partition.c
@@ -0,0 +1,40 @@
+/*
+ * (C) Copyright 2008
+ * Ulf Samuelsson <ulf@atmel.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ */
+#include <common.h>
+#include <config.h>
+#include <asm/hardware.h>
+#include <dataflash.h>
+
+AT91S_DATAFLASH_INFO dataflash_info[CONFIG_SYS_MAX_DATAFLASH_BANKS];
+
+struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+	{CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0, 0},	/* Logical adress, CS */
+	{CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3, 3}
+};
+
+/*define the area offsets*/
+dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+};
diff --git a/board/olimex/sam9_l9261/sam9_l9261.c b/board/olimex/sam9_l9261/sam9_l9261.c
new file mode 100644
index 0000000..3880204
--- /dev/null
+++ b/board/olimex/sam9_l9261/sam9_l9261.c
@@ -0,0 +1,214 @@
+/*
+ * (C) Copyright 2007-2008
+ * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Lead Tech Design <www.leadtechdesign.com>
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#include <common.h>
+#include <asm/arch/at91sam9261.h>
+#include <asm/arch/at91sam9261_matrix.h>
+#include <asm/arch/at91sam9_smc.h>
+#include <asm/arch/at91_common.h>
+#include <asm/arch/at91_pmc.h>
+#include <asm/arch/at91_rstc.h>
+#include <asm/arch/clk.h>
+#include <asm/arch/gpio.h>
+#include <asm/arch/io.h>
+#include <lcd.h>
+#include <atmel_lcdc.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+/* ------------------------------------------------------------------------- */
+/*
+ * Miscelaneous platform dependent initialisations
+ */
+
+#ifdef CONFIG_CMD_NAND
+static void at91sam9261_nand_hw_init(void)
+{
+	unsigned long csa;
+
+	/* Enable CS3 */
+	csa = at91_sys_read(AT91_MATRIX_EBICSA);
+	at91_sys_write(AT91_MATRIX_EBICSA,
+		       csa | AT91_MATRIX_CS3A_SMC_SMARTMEDIA);
+
+	/* Configure SMC CS3 for NAND/SmartMedia */
+	at91_sys_write(AT91_SMC_SETUP(3),
+		       AT91_SMC_NWESETUP_(1) | AT91_SMC_NCS_WRSETUP_(0) |
+		       AT91_SMC_NRDSETUP_(1) | AT91_SMC_NCS_RDSETUP_(0));
+	at91_sys_write(AT91_SMC_PULSE(3),
+		       AT91_SMC_NWEPULSE_(3) | AT91_SMC_NCS_WRPULSE_(3) |
+		       AT91_SMC_NRDPULSE_(3) | AT91_SMC_NCS_RDPULSE_(3));
+	at91_sys_write(AT91_SMC_CYCLE(3),
+		       AT91_SMC_NWECYCLE_(5) | AT91_SMC_NRDCYCLE_(5));
+	at91_sys_write(AT91_SMC_MODE(3),
+		       AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
+		       AT91_SMC_EXNWMODE_DISABLE |
+#ifdef CONFIG_SYS_NAND_DBW_16
+		       AT91_SMC_DBW_16 |
+#else /* CONFIG_SYS_NAND_DBW_8 */
+		       AT91_SMC_DBW_8 |
+#endif
+		       AT91_SMC_TDF_(2));
+
+	at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9261_ID_PIOC);
+
+	/* Configure RDY/BSY */
+	at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
+
+	/* Enable NandFlash */
+	at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
+	at91_set_gpio_output(AT91_PIN_PC14, 1);
+
+	at91_set_A_periph(AT91_PIN_PC0, 0);	/* NANDOE */
+	at91_set_A_periph(AT91_PIN_PC1, 0);	/* NANDWE */
+}
+#endif
+
+#ifdef CONFIG_LCD
+vidinfo_t panel_info = {
+	vl_col:		320,
+	vl_row:		240,
+	vl_clk:		4965000,
+	vl_sync:	0 /*ATMEL_LCDC_INVLINE_INVERTED |
+			ATMEL_LCDC_INVFRAME_INVERTED */,
+	vl_bpix:	3,
+	vl_tft:		1,
+	vl_hsync_len:	30,
+	vl_left_margin:	20,
+	vl_right_margin:38,
+	vl_vsync_len:	3,
+	vl_upper_margin:4,
+	vl_lower_margin:15,
+	mmio:		AT91SAM9261_LCDC_BASE,
+};
+
+void lcd_enable(void)
+{
+	at91_set_gpio_output(AT91_PIN_PA12, 0);  /* power up */
+}
+
+void lcd_disable(void)
+{
+	at91_set_gpio_output(AT91_PIN_PA12, 1);  /* power down */
+}
+
+static void at91sam9261_lcd_hw_init(void)
+{
+	at91_set_A_periph(AT91_PIN_PB0, 0);	/* LCDVSYNC */
+	at91_set_A_periph(AT91_PIN_PB1, 0);	/* LCDHSYNC */
+	at91_set_A_periph(AT91_PIN_PB2, 0);	/* LCDDOTCK */
+	at91_set_A_periph(AT91_PIN_PB3, 0);	/* LCDDEN */
+
+	at91_set_A_periph(AT91_PIN_PB5, 0);	/* LCDD R0 */
+	at91_set_A_periph(AT91_PIN_PB6, 0);	/* LCDD R1 */
+	at91_set_A_periph(AT91_PIN_PB7, 0);	/* LCDD R2 */
+	at91_set_A_periph(AT91_PIN_PB8, 0);	/* LCDD R3 */
+	at91_set_A_periph(AT91_PIN_PB9, 0);	/* LCDD R4 */
+	at91_set_A_periph(AT91_PIN_PB10, 0);	/* LCDD R5 */
+	at91_set_A_periph(AT91_PIN_PB11, 0);	/* LCDD R6 */
+	at91_set_A_periph(AT91_PIN_PB12, 0);	/* LCDD R7 */
+
+	at91_set_A_periph(AT91_PIN_PB13, 0);	/* LCDD G0 */
+	at91_set_A_periph(AT91_PIN_PB14, 0);	/* LCDD G1 */
+	at91_set_A_periph(AT91_PIN_PB15, 0);	/* LCDD G2 */
+	at91_set_A_periph(AT91_PIN_PB16, 0);	/* LCDD G3 */
+	at91_set_A_periph(AT91_PIN_PB17, 0);	/* LCDD G4 */
+	at91_set_A_periph(AT91_PIN_PB18, 0);	/* LCDD G5 */
+	at91_set_A_periph(AT91_PIN_PB19, 0);	/* LCDD G6 */
+	at91_set_A_periph(AT91_PIN_PB20, 0);	/* LCDD G7 */
+
+	at91_set_B_periph(AT91_PIN_PB21, 0);	/* LCDD B0 */
+	at91_set_B_periph(AT91_PIN_PB22, 0);	/* LCDD B1 */
+	at91_set_B_periph(AT91_PIN_PB23, 0);	/* LCDD B2 */
+	at91_set_B_periph(AT91_PIN_PB24, 0);	/* LCDD B3 */
+	at91_set_B_periph(AT91_PIN_PB25, 0);	/* LCDD B4 */
+	at91_set_B_periph(AT91_PIN_PB26, 0);	/* LCDD B5 */
+	at91_set_B_periph(AT91_PIN_PB27, 0);	/* LCDD B6 */
+	at91_set_B_periph(AT91_PIN_PB28, 0);	/* LCDD B7 */
+
+	at91_sys_write(AT91_PMC_SCER, AT91_PMC_HCK1);
+
+	gd->fb_base = AT91SAM9261_SRAM_BASE;
+}
+
+#ifdef CONFIG_LCD_INFO
+#include <nand.h>
+#include <version.h>
+
+void lcd_show_board_info(void)
+{
+	ulong dram_size, nand_size;
+	int i;
+	char temp[32];
+
+	lcd_printf ("%s\n", U_BOOT_VERSION);
+	lcd_printf ("(C) 2009 Olimex Ltd\n");
+	lcd_printf ("support at olimex.com\n");
+	lcd_printf ("%s CPU at %s MHz\n",
+		AT91_CPU_NAME,
+		strmhz(temp, get_cpu_clk_rate()));
+
+	dram_size = 0;
+	for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
+		dram_size += gd->bd->bi_dram[i].size;
+	nand_size = 0;
+	for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
+		nand_size += nand_info[i].size;
+	lcd_printf ("  %ld MB SDRAM, %ld MB NAND\n",
+		dram_size >> 20,
+		nand_size >> 20 );
+}
+#endif /* CONFIG_LCD_INFO */
+#endif
+
+int board_init(void)
+{
+	/* Enable Ctrlc */
+	console_init_f();
+
+	/* arch number of AT91SAM9261EK-Board */
+	gd->bd->bi_arch_number = MACH_TYPE_SAM9_L9261;
+	/* adress of boot parameters */
+	gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
+
+	at91_serial_hw_init();
+#ifdef CONFIG_CMD_NAND
+	at91sam9261_nand_hw_init();
+#endif
+#ifdef CONFIG_HAS_DATAFLASH
+	at91_spi0_hw_init(1 << 0);
+#endif
+#ifdef CONFIG_LCD
+	at91sam9261_lcd_hw_init();
+#endif
+	return 0;
+}
+
+int dram_init(void)
+{
+	gd->bd->bi_dram[0].start = PHYS_SDRAM;
+	gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
+	return 0;
+}
+
diff --git a/include/configs/sam9_l9261.h b/include/configs/sam9_l9261.h
new file mode 100644
index 0000000..5cc550a
--- /dev/null
+++ b/include/configs/sam9_l9261.h
@@ -0,0 +1,230 @@
+/*
+ * (C) Copyright 2007-2008
+ * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Lead Tech Design <www.leadtechdesign.com>
+ *
+ * Configuation settings for the SAM9-L9261 board, based on the
+ * AT91SAM9261EK board configuration.
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+/* ARM asynchronous clock */
+#define AT91_CPU_NAME		"AT91SAM9261"
+#define AT91_MAIN_CLOCK		18432000	/* 18.432 MHz crystal */
+#define CONFIG_SYS_HZ		1000
+
+#define CONFIG_ARM926EJS	1	/* This is an ARM926EJS Core	*/
+#define CONFIG_AT91SAM9261	1	/* It's an Atmel AT91SAM9261 SoC*/
+#define CONFIG_SAM9_L9261	1	/* on an SAM9_L9261 Board	*/
+#define CONFIG_ARCH_CPU_INIT
+#undef CONFIG_USE_IRQ			/* we don't need IRQ/FIQ stuff	*/
+
+#define CONFIG_CMDLINE_TAG	1	/* enable passing of ATAGs	*/
+#define CONFIG_SETUP_MEMORY_TAGS 1
+#define CONFIG_INITRD_TAG	1
+
+#define CONFIG_SKIP_LOWLEVEL_INIT
+#define CONFIG_SKIP_RELOCATE_UBOOT
+
+/*
+ * Hardware drivers
+ */
+#define CONFIG_ATMEL_USART	1
+#undef CONFIG_USART0
+#undef CONFIG_USART1
+#undef CONFIG_USART2
+#define CONFIG_USART3		1	/* USART 3 is DBGU */
+
+/* LCD */
+#define CONFIG_LCD			1
+#define LCD_BPP				LCD_COLOR8
+#define CONFIG_LCD_LOGO			1
+#undef LCD_TEST_PATTERN
+#define CONFIG_LCD_INFO			1
+#define CONFIG_LCD_INFO_BELOW_LOGO	1
+#define CONFIG_LCD_INVERTED_CLOCK	1
+#define CONFIG_SYS_WHITE_ON_BLACK	1
+#define CONFIG_ATMEL_LCD		1
+#define CONFIG_ATMEL_LCD_BGR555		1
+#define CONFIG_SYS_CONSOLE_IS_IN_ENV	1
+
+/* LED */
+#define CONFIG_AT91_LED
+#define	CONFIG_RED_LED		AT91_PIN_PA23	/* this is the power led */
+#define	CONFIG_GREEN_LED	AT91_PIN_PA13	/* this is the user1 led */
+#define	CONFIG_YELLOW_LED	AT91_PIN_PA14	/* this is the user2 led */
+
+#define CONFIG_BOOTDELAY	3
+
+/*
+ * BOOTP options
+ */
+#define CONFIG_BOOTP_BOOTFILESIZE	1
+#define CONFIG_BOOTP_BOOTPATH		1
+#define CONFIG_BOOTP_GATEWAY		1
+#define CONFIG_BOOTP_HOSTNAME		1
+
+/*
+ * Command line configuration.
+ */
+#include <config_cmd_default.h>
+#undef CONFIG_CMD_BDI
+#undef CONFIG_CMD_FPGA
+#undef CONFIG_CMD_IMI
+#undef CONFIG_CMD_IMLS
+#undef CONFIG_CMD_LOADS
+#undef CONFIG_CMD_SOURCE
+
+#define CONFIG_CMD_PING		1
+#define CONFIG_CMD_DHCP		1
+#define CONFIG_CMD_NAND		1
+#define CONFIG_CMD_USB		1
+
+/* SDRAM */
+#define CONFIG_NR_DRAM_BANKS		1
+#define PHYS_SDRAM			0x20000000
+#define PHYS_SDRAM_SIZE			0x04000000	/* 64 megs */
+
+/* DataFlash */
+#define CONFIG_ATMEL_DATAFLASH_SPI
+#define CONFIG_HAS_DATAFLASH		1
+#define CONFIG_SYS_SPI_WRITE_TOUT		(5*CONFIG_SYS_HZ)
+#define CONFIG_SYS_MAX_DATAFLASH_BANKS		2
+#define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0	0xC0000000	/* CS0 */
+#define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3	0xD0000000	/* CS3 */
+#define AT91_SPI_CLK			15000000
+#define DATAFLASH_TCSS			(0x1a << 16)
+#define DATAFLASH_TCHS			(0x1 << 24)
+
+/* NAND flash */
+#ifdef CONFIG_CMD_NAND
+#define CONFIG_NAND_ATMEL
+#define CONFIG_SYS_MAX_NAND_DEVICE		1
+#define CONFIG_SYS_NAND_BASE			0x40000000
+#define CONFIG_SYS_NAND_DBW_8			1
+/* our ALE is AD22 */
+#define CONFIG_SYS_NAND_MASK_ALE		(1 << 22)
+/* our CLE is AD21 */
+#define CONFIG_SYS_NAND_MASK_CLE		(1 << 21)
+#define CONFIG_SYS_NAND_ENABLE_PIN		AT91_PIN_PC14
+#define CONFIG_SYS_NAND_READY_PIN		AT91_PIN_PC15
+#endif
+
+/* NOR flash - no real flash on this board */
+#define CONFIG_SYS_NO_FLASH			1
+
+/* Ethernet */
+#define CONFIG_NET_MULTI		1
+#define CONFIG_DRIVER_DM9000		1
+#define CONFIG_DM9000_BASE		0x30000000
+#define DM9000_IO			CONFIG_DM9000_BASE
+#define DM9000_DATA			(CONFIG_DM9000_BASE + 4)
+#define CONFIG_DM9000_USE_16BIT		1
+#define CONFIG_DM9000_NO_SROM		1
+#define CONFIG_NET_RETRY_COUNT		20
+
+/* USB */
+#define CONFIG_USB_ATMEL
+#define CONFIG_USB_OHCI_NEW		1
+#define CONFIG_DOS_PARTITION		1
+#define CONFIG_SYS_USB_OHCI_CPU_INIT		1
+#define CONFIG_SYS_USB_OHCI_REGS_BASE		0x00500000
+#define CONFIG_SYS_USB_OHCI_SLOT_NAME		"at91sam9261"
+#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS	2
+#define CONFIG_USB_STORAGE		1
+#define CONFIG_CMD_FAT			1
+
+#define CONFIG_SYS_LOAD_ADDR			0x22000000
+
+#define CONFIG_SYS_MEMTEST_START		PHYS_SDRAM
+#define CONFIG_SYS_MEMTEST_END			0x23e00000
+
+#ifdef CONFIG_SYS_USE_DATAFLASH_CS0
+
+/* bootstrap + u-boot + env + linux in dataflash on CS0 */
+#define CONFIG_ENV_IS_IN_DATAFLASH	1
+#define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
+#define CONFIG_ENV_OFFSET	0x4200
+#define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
+#define CONFIG_ENV_SIZE		0x4200
+#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
+#define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
+				"root=/dev/mtdblock0 "			\
+				"mtdparts=at91_nand:-(root) "		\
+				"rw rootfstype=jffs2"
+
+#elif CONFIG_SYS_USE_DATAFLASH_CS3
+
+/* bootstrap + u-boot + env + linux in dataflash on CS3 */
+#define CONFIG_ENV_IS_IN_DATAFLASH	1
+#define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 + 0x8400)
+#define CONFIG_ENV_OFFSET	0x4200
+#define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 + CONFIG_ENV_OFFSET)
+#define CONFIG_ENV_SIZE		0x4200
+#define CONFIG_BOOTCOMMAND	"cp.b 0xD0042000 0x22000000 0x210000; bootm"
+#define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
+				"root=/dev/mtdblock0 "			\
+				"mtdparts=at91_nand:-(root) "		\
+				"rw rootfstype=jffs2"
+
+#else /* CONFIG_SYS_USE_NANDFLASH */
+
+/* bootstrap + u-boot + env + linux in nandflash */
+#define CONFIG_ENV_IS_IN_NAND	1
+#define CONFIG_ENV_OFFSET		0x60000
+#define CONFIG_ENV_OFFSET_REDUND	0x80000
+#define CONFIG_ENV_SIZE		0x20000		/* 1 sector = 128 kB */
+#define CONFIG_BOOTCOMMAND	"nand read 0x22000000 0xA0000 0x200000; bootm"
+#define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
+				"root=/dev/mtdblock5 "			\
+				"mtdparts=at91_nand:128k(bootstrap)ro,"	\
+				"256k(uboot)ro,128k(env1)ro,"		\
+				"128k(env2)ro,2M(linux),-(root) "	\
+				"rw rootfstype=jffs2"
+
+#endif
+
+#define CONFIG_BAUDRATE		115200
+#define CONFIG_SYS_BAUDRATE_TABLE	{115200 , 19200, 38400, 57600, 9600 }
+
+#define CONFIG_SYS_PROMPT		"U-Boot> "
+#define CONFIG_SYS_CBSIZE		256
+#define CONFIG_SYS_MAXARGS		16
+#define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
+#define CONFIG_SYS_LONGHELP		1
+#define CONFIG_CMDLINE_EDITING	1
+
+#define ROUND(A, B)		(((A) + (B)) & ~((B) - 1))
+/*
+ * Size of malloc() pool
+ */
+#define CONFIG_SYS_MALLOC_LEN		ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000)
+#define CONFIG_SYS_GBL_DATA_SIZE	128	/* 128 bytes for initial data */
+
+#define CONFIG_STACKSIZE	(32*1024)	/* regular stack */
+
+#ifdef CONFIG_USE_IRQ
+#error CONFIG_USE_IRQ not supported
+#endif
+
+#endif
diff --git a/tools/Makefile b/tools/Makefile
index 43c284c..c56c56a 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -122,6 +122,9 @@ endif
 ifeq ($(VENDOR),atmel)
 LOGO_BMP= logos/atmel.bmp
 endif
+ifeq ($(VENDOR),olimex)
+LOGO_BMP= logos/olimex.bmp
+endif
 ifeq ($(VENDOR),ronetix)
 LOGO_BMP= logos/ronetix.bmp
 endif
diff --git a/tools/logos/olimex.bmp b/tools/logos/olimex.bmp
new file mode 100644
index 0000000000000000000000000000000000000000..a787d71dd6b9da0f3122d0cce16845bf18e04610
GIT binary patch
literal 27510
zcmeI0J8~w)7KDGn5J3bUHVeRH4fyN<d+@PYu2z66>UB=$c~y5yNX!JS%c!$5zdTi4
z`e)|CufP5I$76i`-M;_ae*N_Hc>La;Pmk~0_s8R}&yUBCKg?ghv~~aW^77KZ%Ri6j
z=jXQmdcL04*EjO@?fTMJ`0juEb>B_>qrdOwzMJ|6>g4|1+;>yoK%Ly5oBM9+8>kcg
zzcIJCZ{WUx`v&eCxNqRTf%^vT8 at O-a?KdF*T0)b=YX9-@<d-&{&Ua3Z9+=F((s?^8
zyY}at#?Hw%eMRNU$!Yv?jbN7BB7>Fg16;P9xx%B0%XxWu{9%Eov)&b%t90-CY&Uad
z2NfTi_3?Ov%ZIzHIhvMbCA>0~AbTCFsp^rM>?=NXYn at UF$8Ud|d)BOr4Ggnc#H-mJ
zW$hLQ at +m^-4Tcl#@!f#}YmH=j^1`<Bq#qWbs?veRlwn%o<4d at Cnqgrf#THB%2pGav
zPmoX*E52;oUTRsrOA at 1^!VqcD-AK57#+l?uvsqJ8=A@wY(-m~)z9IX{6SX+cIx-gx
z+>K-hPdm`Aq^jd>jFo`fC-9-RY!5rNpePRiVvuSdBU_DqX)S*FltO&QN at Ru;!PK$s
z6fq{hlmy{D?NDBYihOP)IPv6ptdlCoq!Ti=sG{$fg5Ja}X~MG#t?Uwld4IQ-j(sK#
z3+O5#3rj24u7-bK$YhKvm7wdnIOiTMv*}qU<F37>PRPcWUT at h@=WK=Ttlv`3JY2>d
z(n`dd<4DgGv9<T5nVN<#<ZDxrKW*HBW7D?cANoG;>o{dN7LAb2Wr}q}i(?5hPqO^U
z4cXZJFtehmwS{GT8UVr#OTI{x>qf>El%EQ~RLh+fgjZ-#g-mj}%0$<@%*BklAA=bq
zoY`ub><M@DMCXW<91S{HYD!~12^kWpPiQV6RZOdCMS_rJ+06=_4P+uT=p9ni)cg+|
zpB(B=>3VL-xQk?&AY=)3_(bOrT>u&v at 5cRsEtf;{x;#7v at fAym%p<F61s|Od6$Toz
zZv#^^3?OPqTbyYqd4q=dNY;eN8Oajr@QKbLx&Sm}-xj21oJd$MV<k9L4B0XWku#E2
zwStdMi256+rgo63l~z)YDk=fiO5u7dLgWp|N=G9{oOvTX5y-xc2Tdk+fg&)G;A%y+
z3L->~Lsr^CjyUsr3g7>DD9OgiVUSrx^&l--tf*BG+2M~`$T2kYS_-=>;5LF!JWNqD
zv at 0rz6yV?~czaePA;OTAwvZ#vJbyJZf40ydKQ-4blF6pBc29|qo>Z$)Lgb8Or7h%$
zGtYf$8Uo(j8*Gd*Yy&8fh%IOg+bc9=Uf>B4hOB^h13BW%BXGswd5Y|7Mw8iFnBUc!
zW6il*(eZ=I6--F7W!gdoapvg at HEibK#Th<qjM=Nzh!92{De6`zA at 6lJee1amAA&Z9
zP3B&%iia at iP*JsF3Hb`|Mn9VKHL91)e0uRL?j9lUbvJG9+Jz568^b0ulR8L_isn^i
z#usH~7D859LXJ4|<VMnr!)y#nP@P*VR9>erw5wtULkl4*Eg?sodGa1<#$h%FC8*A=
z6)LY&7&=rwgrP-{m3ELL&OCXKG~+NEgA!Ed)(Vx^DGVJdAHvWg$VxlN5oeyhh=jnK
z60<$wlew2tv6Q&SPurstaFwCulf|TJ<Z98I!fOg>QzqdEf#G+HRq+TW9jH~56XrBe
zj~k{PR1jxgPvN_($rHl2a%~(LoM^9RQxBNKJbn>mr5)smGjF6P0=hNOTNMwgIF7Vc
zlW&NM1lOTWteC8%AmciP7#(;+oe0t~WcE22gKdqc3%7r<RD6n at VrUU$r5)smGjF6P
z0=fp!WX@d>tzBVQg+pzWt%S||mijTEUOF8);>;WAiGWT9noR7%iclw+s`RM}Lu(LO
z>1gDLGjF6P0=fp!WMUUmL<UJ%DNU)Mm{|x}X$d*v%p2*6fUW^Fnb-x2z(j&8m1z|e
zGYcUrEg?soc_Td$&^3T26T7G)E|m(_f_fE1h#ZHkw1pgT=8d!r=&zn^j2s3TDGaR?
z!G)w|LC^``<<DX|fqz>>I2$}qgK>YM_eyGUBhe?eB1DcuRx*>%ffyZlO~LNUM3liN
z9;R0WP1%9e^i5uKfql{mLKcCL$oF16F!-kSW86hj6TPKoR at hXu((pEt6(h?dODOY1
z4m<Pc?IlLx)psMK^eHpd5FtVS6ly**#t;i2FRRciBSt6lkkZEiW>JAn3azD(Z6ZLb
z9Id_z3oM&V1z8}6n|QE{(hgj;=-PV<UlmGAY0^XphrtAC4^uRx%_SvQEPhgq)3bS5
z>-5V_9AM1I`#RnV5ARaVsH7eQrA>-&-HR(3QvKxXacEAJlb%}Z9L`(}pcJMk3WvPB
zj~~$1GP^yKbYoF*caDfnXEWJE)F+?ZB`F-Tusyb2^DbM^h1?VEkhzr5KT|lE+ at g@}
zp(&ek5y5ApF}w`g>=M$_Fg0CdxQ1S2u=h-dLgV*^WU3Y+e)b$l7KpcIoERmI{<JNu
z!1zOgQ3beCiVi`P4ccmD-6yFFs;ZnbbeV`r==X$3EX9LRxFu5u1ct(e067#<E|I;)
z&un26p^lR>!r8nOM4p^gTG;G4J0l^Pk<F_%$eTomc`NHaNnKFY#A8kjBQrNFNew1f
ze8*U*0&TX=OhjlAQ)U=B5$dqCeNI?gs;@ZBbZoFA4IRT_)Pl$7mJMOmkA8PtJ%<9;
zTNOHeH`gyi*#mAJ_+>b(FA0q)g+ngF+nn)`vm75Hba-H at eItebee*xs_S%cMLtZPt
zfwud;VbFV4%^}}&BR8A(b<vlzq(gq_p|J0VZhLXFb;^sa8^3ShzJdD&?i;vo;Dc}A
w)2B!K=P|#1 at ZMkgcI|4~#f<-b=|}zW^Q~*?AD#Ql-GKat8c&zqOTB@A01O0K1ONa4

literal 0
HcmV?d00001

-- 
1.5.6.1

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH 03/03 v3] Add support for Olimex SAM9-L9260 SBC
  2009-07-15 15:56 [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Dimitar Dimitrov
  2009-07-15 15:58 ` [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC Dimitar Dimitrov
@ 2009-07-15 16:00 ` Dimitar Dimitrov
  2009-07-18 21:13   ` Jean-Christophe PLAGNIOL-VILLARD
  2009-07-18 19:18 ` [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Anatolij Gustschin
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 13+ messages in thread
From: Dimitar Dimitrov @ 2009-07-15 16:00 UTC (permalink / raw)
  To: u-boot

The SAM9-L9260 board support is based on code for AT91SAM9260EK. Networking
is missing and will be added after the MACB support for AT91 boards is
fixed to comply with U-Boot guide-lines.

Signed-off-by: Dimitar Dimitrov <dinuxbg@gmail.com>
---
 MAINTAINERS                          |    1 +
 MAKEALL                              |    1 +
 Makefile                             |   17 +++
 board/olimex/sam9_l9260/Makefile     |   56 +++++++++
 board/olimex/sam9_l9260/config.mk    |    1 +
 board/olimex/sam9_l9260/led.c        |   41 +++++++
 board/olimex/sam9_l9260/partition.c  |   40 +++++++
 board/olimex/sam9_l9260/sam9_l9260.c |  111 ++++++++++++++++++
 include/configs/sam9_l9260.h         |  214 ++++++++++++++++++++++++++++++++++
 9 files changed, 482 insertions(+), 0 deletions(-)
 create mode 100644 board/olimex/sam9_l9260/Makefile
 create mode 100644 board/olimex/sam9_l9260/config.mk
 create mode 100644 board/olimex/sam9_l9260/led.c
 create mode 100644 board/olimex/sam9_l9260/partition.c
 create mode 100644 board/olimex/sam9_l9260/sam9_l9260.c
 create mode 100644 include/configs/sam9_l9260.h

diff --git a/MAINTAINERS b/MAINTAINERS
index dfcccf5..8487c36 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -134,6 +134,7 @@ Jon Diekema <jon.diekema@smiths-aerospace.com>
 	sbc8260		MPC8260
 
 Dimitar Dimitrov <dinuxbg@gmail.com>
+	sam9_l9260	AT91SAM9260
 	sam9_l9261	AT91SAM9261
 
 Dirk Eibach <eibach@gdsys.de>
diff --git a/MAKEALL b/MAKEALL
index ecabfcf..57d04de 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -599,6 +599,7 @@ LIST_at91="			\
 	m501sk			\
 	pm9261			\
 	pm9263			\
+	sam9_l9260		\
 	sam9_l9261		\
 "
 
diff --git a/Makefile b/Makefile
index b19c3b0..1e39850 100644
--- a/Makefile
+++ b/Makefile
@@ -2847,6 +2847,23 @@ at91sam9g45ekes_config	:	unconfig
 pm9263_config	:	unconfig
 	@$(MKCONFIG) $(@:_config=) arm arm926ejs pm9263 ronetix at91
 
+sam9_l9260_nandflash_config \
+sam9_l9260_dataflash_cs0_config \
+sam9_l9260_dataflash_cs1_config \
+sam9_l9260_config :	unconfig
+	@mkdir -p $(obj)include
+	@if [ "$(findstring _nandflash,$@)" ] ; then \
+		echo "#define CONFIG_SYS_USE_NANDFLASH 1"	>>$(obj)include/config.h ; \
+		$(XECHO) "... with environment variable in NAND FLASH" ; \
+	elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
+		echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1"	>>$(obj)include/config.h ; \
+		$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
+	else \
+		echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1"	>>$(obj)include/config.h ; \
+		$(XECHO) "... with environment variable in SPI DATAFLASH CS1" ; \
+	fi;
+	@$(MKCONFIG) -a sam9_l9260 arm arm926ejs sam9_l9260 olimex at91
+
 sam9_l9261_nandflash_config \
 sam9_l9261_dataflash_cs0_config \
 sam9_l9261_dataflash_cs3_config \
diff --git a/board/olimex/sam9_l9260/Makefile b/board/olimex/sam9_l9260/Makefile
new file mode 100644
index 0000000..39db0ea
--- /dev/null
+++ b/board/olimex/sam9_l9260/Makefile
@@ -0,0 +1,56 @@
+#
+# (C) Copyright 2003-2008
+# Wolfgang Denk, DENX Software Engineering, wd at denx.de.
+#
+# (C) Copyright 2008
+# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Lead Tech Design <www.leadtechdesign.com>
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+
+include $(TOPDIR)/config.mk
+
+LIB	= $(obj)lib$(BOARD).a
+
+COBJS-y	+= sam9_l9260.o
+COBJS-y	+= led.o
+COBJS-$(CONFIG_HAS_DATAFLASH) += partition.o
+
+SRCS	:= $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
+OBJS	:= $(addprefix $(obj),$(COBJS-y))
+SOBJS	:= $(addprefix $(obj),$(SOBJS))
+
+$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
+	$(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
+
+clean:
+	rm -f $(SOBJS) $(OBJS)
+
+distclean:	clean
+	rm -f $(LIB) core *.bak $(obj).depend
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
diff --git a/board/olimex/sam9_l9260/config.mk b/board/olimex/sam9_l9260/config.mk
new file mode 100644
index 0000000..ff2cfd1
--- /dev/null
+++ b/board/olimex/sam9_l9260/config.mk
@@ -0,0 +1 @@
+TEXT_BASE = 0x23f00000
diff --git a/board/olimex/sam9_l9260/led.c b/board/olimex/sam9_l9260/led.c
new file mode 100644
index 0000000..2424d27
--- /dev/null
+++ b/board/olimex/sam9_l9260/led.c
@@ -0,0 +1,41 @@
+/*
+ * (C) Copyright 2007-2008
+ * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Lead Tech Design <www.leadtechdesign.com>
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#include <common.h>
+#include <asm/arch/at91sam9260.h>
+#include <asm/arch/at91_pmc.h>
+#include <asm/arch/gpio.h>
+#include <asm/arch/io.h>
+
+void coloured_LED_init(void)
+{
+	/* Enable clock */
+	at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9260_ID_PIOA);
+
+	at91_set_gpio_output(CONFIG_RED_LED, 1);
+	at91_set_gpio_output(CONFIG_GREEN_LED, 1);
+
+	at91_set_gpio_value(CONFIG_RED_LED, 0);
+	at91_set_gpio_value(CONFIG_GREEN_LED, 1);
+}
diff --git a/board/olimex/sam9_l9260/partition.c b/board/olimex/sam9_l9260/partition.c
new file mode 100644
index 0000000..2629c67
--- /dev/null
+++ b/board/olimex/sam9_l9260/partition.c
@@ -0,0 +1,40 @@
+/*
+ * (C) Copyright 2008
+ * Ulf Samuelsson <ulf@atmel.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ */
+#include <common.h>
+#include <config.h>
+#include <asm/hardware.h>
+#include <dataflash.h>
+
+AT91S_DATAFLASH_INFO dataflash_info[CONFIG_SYS_MAX_DATAFLASH_BANKS];
+
+struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+	{CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0, 0},	/* Logical adress, CS */
+	{CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1, 1}
+};
+
+/*define the area offsets*/
+dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+};
diff --git a/board/olimex/sam9_l9260/sam9_l9260.c b/board/olimex/sam9_l9260/sam9_l9260.c
new file mode 100644
index 0000000..30ea3d0
--- /dev/null
+++ b/board/olimex/sam9_l9260/sam9_l9260.c
@@ -0,0 +1,111 @@
+/*
+ * (C) Copyright 2007-2008
+ * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Lead Tech Design <www.leadtechdesign.com>
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#include <common.h>
+#include <asm/arch/at91sam9260.h>
+#include <asm/arch/at91sam9260_matrix.h>
+#include <asm/arch/at91sam9_smc.h>
+#include <asm/arch/at91_common.h>
+#include <asm/arch/at91_pmc.h>
+#include <asm/arch/at91_rstc.h>
+#include <asm/arch/gpio.h>
+#include <asm/arch/io.h>
+#include <asm/arch/hardware.h>
+#include <netdev.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+/* ------------------------------------------------------------------------- */
+/*
+ * Miscelaneous platform dependent initialisations
+ */
+
+#ifdef CONFIG_CMD_NAND
+static void at91sam9260_nand_hw_init(void)
+{
+	unsigned long csa;
+
+	/* Enable CS3 */
+	csa = at91_sys_read(AT91_MATRIX_EBICSA);
+	at91_sys_write(AT91_MATRIX_EBICSA,
+		       csa | AT91_MATRIX_CS3A_SMC_SMARTMEDIA);
+
+	/* Configure SMC CS3 for NAND/SmartMedia */
+	at91_sys_write(AT91_SMC_SETUP(3),
+		       AT91_SMC_NWESETUP_(1) | AT91_SMC_NCS_WRSETUP_(0) |
+		       AT91_SMC_NRDSETUP_(1) | AT91_SMC_NCS_RDSETUP_(0));
+	at91_sys_write(AT91_SMC_PULSE(3),
+		       AT91_SMC_NWEPULSE_(3) | AT91_SMC_NCS_WRPULSE_(3) |
+		       AT91_SMC_NRDPULSE_(3) | AT91_SMC_NCS_RDPULSE_(3));
+	at91_sys_write(AT91_SMC_CYCLE(3),
+		       AT91_SMC_NWECYCLE_(5) | AT91_SMC_NRDCYCLE_(5));
+	at91_sys_write(AT91_SMC_MODE(3),
+		       AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
+		       AT91_SMC_EXNWMODE_DISABLE |
+#ifdef CONFIG_SYS_NAND_DBW_16
+		       AT91_SMC_DBW_16 |
+#else /* CONFIG_SYS_NAND_DBW_8 */
+		       AT91_SMC_DBW_8 |
+#endif
+		       AT91_SMC_TDF_(2));
+
+	at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9260_ID_PIOC);
+
+	/* Configure RDY/BSY */
+	at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
+
+	/* Enable NandFlash */
+	at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
+}
+#endif
+
+
+int board_init(void)
+{
+	/* Enable Ctrlc */
+	console_init_f();
+
+	/* arch number of SAM9_L9260-Board */
+	gd->bd->bi_arch_number = MACH_TYPE_SAM9_L9260;
+	/* adress of boot parameters */
+	gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
+
+	at91_serial_hw_init();
+#ifdef CONFIG_CMD_NAND
+	at91sam9260_nand_hw_init();
+#endif
+#ifdef CONFIG_HAS_DATAFLASH
+	at91_spi0_hw_init((1 << 0) || (1 << 1));
+#endif
+
+	return 0;
+}
+
+int dram_init(void)
+{
+	gd->bd->bi_dram[0].start = PHYS_SDRAM;
+	gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
+	return 0;
+}
+
diff --git a/include/configs/sam9_l9260.h b/include/configs/sam9_l9260.h
new file mode 100644
index 0000000..9232c13
--- /dev/null
+++ b/include/configs/sam9_l9260.h
@@ -0,0 +1,214 @@
+/*
+ * (C) Copyright 2007-2008
+ * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Lead Tech Design <www.leadtechdesign.com>
+ * Dimitar Dimitrov <dimitar@olimex.com>
+ *
+ * Configuation settings for the SAM9-L9260 board.
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+/* ARM asynchronous clock */
+#define AT91_MAIN_CLOCK		18432000	/* 18.432 MHz crystal */
+#define CONFIG_SYS_HZ		1000
+
+#define CONFIG_ARM926EJS	1	/* This is an ARM926EJS Core	*/
+
+#define AT91_CPU_NAME		"AT91SAM9260"
+#define CONFIG_AT91SAM9260	1	/* It's an Atmel AT91SAM9260 SoC*/
+#define CONFIG_SAM9_L9260	1	/* on an SAM9_L9260 Board	*/
+
+#define CONFIG_ARCH_CPU_INIT
+#undef CONFIG_USE_IRQ			/* we don't need IRQ/FIQ stuff	*/
+
+#define CONFIG_CMDLINE_TAG	1	/* enable passing of ATAGs	*/
+#define CONFIG_SETUP_MEMORY_TAGS 1
+#define CONFIG_INITRD_TAG	1
+
+#define CONFIG_SKIP_LOWLEVEL_INIT
+#define CONFIG_SKIP_RELOCATE_UBOOT
+
+/*
+ * Hardware drivers
+ */
+#define CONFIG_ATMEL_USART	1
+#undef CONFIG_USART0
+#undef CONFIG_USART1
+#undef CONFIG_USART2
+#define CONFIG_USART3		1	/* USART 3 is DBGU */
+
+/* LED */
+#define CONFIG_AT91_LED
+#define	CONFIG_RED_LED		AT91_PIN_PA9	/* this is the power led */
+#define	CONFIG_GREEN_LED	AT91_PIN_PA6	/* this is the user led */
+
+#define CONFIG_BOOTDELAY	3
+
+/*
+ * BOOTP options
+ */
+#define CONFIG_BOOTP_BOOTFILESIZE	1
+#define CONFIG_BOOTP_BOOTPATH		1
+#define CONFIG_BOOTP_GATEWAY		1
+#define CONFIG_BOOTP_HOSTNAME		1
+
+/*
+ * Command line configuration.
+ */
+#include <config_cmd_default.h>
+#undef CONFIG_CMD_BDI
+#undef CONFIG_CMD_FPGA
+#undef CONFIG_CMD_IMI
+#undef CONFIG_CMD_IMLS
+#undef CONFIG_CMD_LOADS
+#undef CONFIG_CMD_SOURCE
+
+#define CONFIG_CMD_PING		1
+#define CONFIG_CMD_DHCP		1
+#define CONFIG_CMD_NAND		1
+#define CONFIG_CMD_USB		1
+
+/* SDRAM */
+#define CONFIG_NR_DRAM_BANKS		1
+#define PHYS_SDRAM			0x20000000
+#define PHYS_SDRAM_SIZE			0x04000000	/* 64 megs */
+
+/* DataFlash */
+#define CONFIG_ATMEL_DATAFLASH_SPI
+#define CONFIG_HAS_DATAFLASH		1
+#define CONFIG_SYS_SPI_WRITE_TOUT		(5*CONFIG_SYS_HZ)
+#define CONFIG_SYS_MAX_DATAFLASH_BANKS		2
+#define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0	0xC0000000	/* CS0 */
+#define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1	0xD0000000	/* CS1 */
+#define AT91_SPI_CLK			15000000
+#define DATAFLASH_TCSS			(0x1a << 16)
+#define DATAFLASH_TCHS			(0x1 << 24)
+
+/* NAND flash */
+#ifdef CONFIG_CMD_NAND
+#define CONFIG_NAND_ATMEL
+#define CONFIG_SYS_MAX_NAND_DEVICE		1
+#define CONFIG_SYS_NAND_BASE			0x40000000
+#define CONFIG_SYS_NAND_DBW_8			1
+/* our ALE is AD21 */
+#define CONFIG_SYS_NAND_MASK_ALE		(1 << 21)
+/* our CLE is AD22 */
+#define CONFIG_SYS_NAND_MASK_CLE		(1 << 22)
+#define CONFIG_SYS_NAND_ENABLE_PIN		AT91_PIN_PC14
+#define CONFIG_SYS_NAND_READY_PIN		AT91_PIN_PC13
+#endif
+
+/* NOR flash - no real flash on this board */
+#define CONFIG_SYS_NO_FLASH			1
+
+/* Ethernet */
+#define CONFIG_MACB			1
+#undef CONFIG_RMII
+#define CONFIG_NET_MULTI		1
+#define CONFIG_NET_RETRY_COUNT		20
+
+/* USB */
+#define CONFIG_USB_ATMEL
+#define CONFIG_USB_OHCI_NEW		1
+#define CONFIG_DOS_PARTITION		1
+#define CONFIG_SYS_USB_OHCI_CPU_INIT		1
+#define CONFIG_SYS_USB_OHCI_REGS_BASE		0x00500000
+#define CONFIG_SYS_USB_OHCI_SLOT_NAME		"at91sam9260"
+#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS	2
+#define CONFIG_USB_STORAGE		1
+#define CONFIG_CMD_FAT			1
+
+#define CONFIG_SYS_LOAD_ADDR			0x22000000
+
+#define CONFIG_SYS_MEMTEST_START		PHYS_SDRAM
+#define CONFIG_SYS_MEMTEST_END			0x23e00000
+
+#ifdef CONFIG_SYS_USE_DATAFLASH_CS0
+
+/* bootstrap + u-boot + env + linux in dataflash on CS0 */
+#define CONFIG_ENV_IS_IN_DATAFLASH	1
+#define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
+#define CONFIG_ENV_OFFSET		0x4200
+#define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
+#define CONFIG_ENV_SIZE		0x4200
+#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
+#define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
+				"root=/dev/mtdblock0 "			\
+				"mtdparts=at91_nand:-(root) "		\
+				"rw rootfstype=jffs2"
+
+#elif CONFIG_SYS_USE_DATAFLASH_CS1
+
+/* bootstrap + u-boot + env + linux in dataflash on CS1 */
+#define CONFIG_ENV_IS_IN_DATAFLASH	1
+#define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + 0x8400)
+#define CONFIG_ENV_OFFSET		0x4200
+#define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + CONFIG_ENV_OFFSET)
+#define CONFIG_ENV_SIZE		0x4200
+#define CONFIG_BOOTCOMMAND	"cp.b 0xD0042000 0x22000000 0x210000; bootm"
+#define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
+				"root=/dev/mtdblock0 "			\
+				"mtdparts=at91_nand:-(root) "		\
+				"rw rootfstype=jffs2"
+
+#else /* CONFIG_SYS_USE_NANDFLASH */
+
+/* bootstrap + u-boot + env + linux in nandflash */
+#define CONFIG_ENV_IS_IN_NAND	1
+#define CONFIG_ENV_OFFSET		0x60000
+#define CONFIG_ENV_OFFSET_REDUND	0x80000
+#define CONFIG_ENV_SIZE		0x20000		/* 1 sector = 128 kB */
+#define CONFIG_BOOTCOMMAND	"nand read 0x22000000 0xA0000 0x200000; bootm"
+#define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
+				"root=/dev/mtdblock5 "			\
+				"mtdparts=at91_nand:128k(bootstrap)ro,"	\
+				"256k(uboot)ro,128k(env1)ro,"		\
+				"128k(env2)ro,2M(linux),-(root) "	\
+				"rw rootfstype=jffs2"
+
+#endif
+
+#define CONFIG_BAUDRATE		115200
+#define CONFIG_SYS_BAUDRATE_TABLE	{115200 , 19200, 38400, 57600, 9600 }
+
+#define CONFIG_SYS_PROMPT		"U-Boot> "
+#define CONFIG_SYS_CBSIZE		256
+#define CONFIG_SYS_MAXARGS		16
+#define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
+#define CONFIG_SYS_LONGHELP		1
+#define CONFIG_CMDLINE_EDITING	1
+
+#define ROUND(A, B)		(((A) + (B)) & ~((B) - 1))
+/*
+ * Size of malloc() pool
+ */
+#define CONFIG_SYS_MALLOC_LEN		ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000)
+#define CONFIG_SYS_GBL_DATA_SIZE	128	/* 128 bytes for initial data */
+
+#define CONFIG_STACKSIZE	(32*1024)	/* regular stack */
+
+#ifdef CONFIG_USE_IRQ
+#error CONFIG_USE_IRQ not supported
+#endif
+
+#endif
-- 
1.5.6.1

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-07-15 15:56 [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Dimitar Dimitrov
  2009-07-15 15:58 ` [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC Dimitar Dimitrov
  2009-07-15 16:00 ` [U-Boot] [PATCH 03/03 v3] Add support for Olimex SAM9-L9260 SBC Dimitar Dimitrov
@ 2009-07-18 19:18 ` Anatolij Gustschin
  2009-07-25 20:28   ` Anatolij Gustschin
  2009-07-18 20:58 ` Jean-Christophe PLAGNIOL-VILLARD
  2009-11-22 21:01 ` Wolfgang Denk
  4 siblings, 1 reply; 13+ messages in thread
From: Anatolij Gustschin @ 2009-07-18 19:18 UTC (permalink / raw)
  To: u-boot

Dimitar Dimitrov wrote:
> This is my third try for Olimex SAM9-L9260/61 board support patches. 
> 
> Here follows the first patch.
> ---
> 
> Boards utilizing the Atmel LCD driver can now specify that the LCD clock must
> be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK.
> ---
>  README                      |    5 +++++
>  drivers/video/atmel_lcdfb.c |    3 +++
>  2 files changed, 8 insertions(+), 0 deletions(-)

Applied to u-boot-video after fixing commit message and adding
your Signed-off-by line. Also please check for trailing white
spaces next time. Thanks!

Best regards,
Anatolij

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-07-15 15:56 [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Dimitar Dimitrov
                   ` (2 preceding siblings ...)
  2009-07-18 19:18 ` [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Anatolij Gustschin
@ 2009-07-18 20:58 ` Jean-Christophe PLAGNIOL-VILLARD
  2009-07-18 23:34   ` Anatolij Gustschin
  2009-11-22 21:01 ` Wolfgang Denk
  4 siblings, 1 reply; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-07-18 20:58 UTC (permalink / raw)
  To: u-boot

On 18:56 Wed 15 Jul     , Dimitar Dimitrov wrote:
> This is my third try for Olimex SAM9-L9260/61 board support patches. 
> 
> Here follows the first patch.
> ---
> 
> Boards utilizing the Atmel LCD driver can now specify that the LCD clock must
> be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK.
> ---
>  README                      |    5 +++++
>  drivers/video/atmel_lcdfb.c |    3 +++
>  2 files changed, 8 insertions(+), 0 deletions(-)
> 
> diff --git a/README b/README
> index de700bd..d7c0afe 100644
> --- a/README
> +++ b/README
> @@ -1063,6 +1063,11 @@ The following options need to be configured:
>  		Normally display is black on white background; define
>  		CONFIG_SYS_WHITE_ON_BLACK to get it inverted.
>  
> +		CONFIG_LCD_INVERTED_CLOCK
> +		Define this if your LCD needs inverted clock polarity. Note
> +		that this feature will work only if the selected LCD driver 
> +		and hardware controller support it.
> +
>  - Splash Screen Support: CONFIG_SPLASH_SCREEN
>  
>  		If this option is set, the environment is checked for
> diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c
> index db86763..d3e988e 100644
> --- a/drivers/video/atmel_lcdfb.c
> +++ b/drivers/video/atmel_lcdfb.c
> @@ -112,6 +112,9 @@ void lcd_ctrl_init(void *lcdbase)
>  
>  	value |= panel_info.vl_sync;
>  	value |= (panel_info.vl_bpix << 5);
> +#if defined(CONFIG_LCD_INVERTED_CLOCK)
> +	value |= ATMEL_LCDC_INVCLK_INVERTED;
> +#endif
NACK
	do this throught the struct via vl_sync as in linux

Best Regards,
J.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC
  2009-07-15 15:58 ` [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC Dimitar Dimitrov
@ 2009-07-18 21:09   ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-07-18 21:09 UTC (permalink / raw)
  To: u-boot

On 18:58 Wed 15 Jul     , Dimitar Dimitrov wrote:
> The SAM9-L9261 board support is based on code for AT91SAM9261EK. Networking
> is missing and will be added after the DM9000 support for AT91 boards is
> fixed to comply with U-Boot guide-lines.
> ---
this patch look at 80% similar as the at91sam9261ek

could you regenerate it with
git format-patch -M -B -C
>  MAINTAINERS                          |    3 +
>  MAKEALL                              |    1 +
>  Makefile                             |   17 +++
>  board/olimex/sam9_l9261/Makefile     |   56 ++++++++
>  board/olimex/sam9_l9261/config.mk    |    1 +
>  board/olimex/sam9_l9261/led.c        |   43 +++++++
>  board/olimex/sam9_l9261/partition.c  |   40 ++++++
>  board/olimex/sam9_l9261/sam9_l9261.c |  214 +++++++++++++++++++++++++++++++
>  include/configs/sam9_l9261.h         |  230 ++++++++++++++++++++++++++++++++++
>  tools/Makefile                       |    3 +
>  tools/logos/olimex.bmp               |  Bin 0 -> 27510 bytes
>  11 files changed, 608 insertions(+), 0 deletions(-)
>  create mode 100644 board/olimex/sam9_l9261/Makefile
>  create mode 100644 board/olimex/sam9_l9261/config.mk
>  create mode 100644 board/olimex/sam9_l9261/led.c
>  create mode 100644 board/olimex/sam9_l9261/partition.c
>  create mode 100644 board/olimex/sam9_l9261/sam9_l9261.c
>  create mode 100644 include/configs/sam9_l9261.h
>  create mode 100644 tools/logos/olimex.bmp
> 
<snip>
> +
> +/* ------------------------------------------------------------------------- */
> +/*
> + * Miscelaneous platform dependent initialisations
> + */
> +
why don't you configure the dm9000 SMC?
<snip>
> +
> +/* ARM asynchronous clock */
> +#define AT91_CPU_NAME		"AT91SAM9261"
no-need please remove
> +#define AT91_MAIN_CLOCK		18432000	/* 18.432 MHz crystal */
> +#define CONFIG_SYS_HZ		1000
> +
> +#define CONFIG_ARM926EJS	1	/* This is an ARM926EJS Core	*/
> +#define CONFIG_AT91SAM9261	1	/* It's an Atmel AT91SAM9261 SoC*/
> +#define CONFIG_SAM9_L9261	1	/* on an SAM9_L9261 Board	*/
> +#define CONFIG_ARCH_CPU_INIT
> +#undef CONFIG_USE_IRQ			/* we don't need IRQ/FIQ stuff	*/
> +
> +#define CONFIG_CMDLINE_TAG	1	/* enable passing of ATAGs	*/
> +#define CONFIG_SETUP_MEMORY_TAGS 1
> +#define CONFIG_INITRD_TAG	1
> +
> +#define CONFIG_SKIP_LOWLEVEL_INIT
> +#define CONFIG_SKIP_RELOCATE_UBOOT
> +
> +/*
> + * Hardware drivers
> + */
> +#define CONFIG_ATMEL_USART	1
> +#undef CONFIG_USART0
> +#undef CONFIG_USART1
> +#undef CONFIG_USART2
> +#define CONFIG_USART3		1	/* USART 3 is DBGU */
> +
> +/* LCD */
> +#define CONFIG_LCD			1
> +#define LCD_BPP				LCD_COLOR8
> +#define CONFIG_LCD_LOGO			1
> +#undef LCD_TEST_PATTERN
> +#define CONFIG_LCD_INFO			1
> +#define CONFIG_LCD_INFO_BELOW_LOGO	1
> +#define CONFIG_LCD_INVERTED_CLOCK	1
> +#define CONFIG_SYS_WHITE_ON_BLACK	1
> +#define CONFIG_ATMEL_LCD		1
> +#define CONFIG_ATMEL_LCD_BGR555		1
> +#define CONFIG_SYS_CONSOLE_IS_IN_ENV	1
> +
> +/* LED */
> +#define CONFIG_AT91_LED
> +#define	CONFIG_RED_LED		AT91_PIN_PA23	/* this is the power led */
> +#define	CONFIG_GREEN_LED	AT91_PIN_PA13	/* this is the user1 led */
> +#define	CONFIG_YELLOW_LED	AT91_PIN_PA14	/* this is the user2 led */
please fix the indent
> +
> +#define CONFIG_BOOTDELAY	3
> +
> +/*
> + * BOOTP options
> + */
> +#define CONFIG_BOOTP_BOOTFILESIZE	1
> +#define CONFIG_BOOTP_BOOTPATH		1
> +#define CONFIG_BOOTP_GATEWAY		1
> +#define CONFIG_BOOTP_HOSTNAME		1
> +
<snip>
> +
> +#define CONFIG_BAUDRATE		115200
> +#define CONFIG_SYS_BAUDRATE_TABLE	{115200 , 19200, 38400, 57600, 9600 }
> +
> +#define CONFIG_SYS_PROMPT		"U-Boot> "
> +#define CONFIG_SYS_CBSIZE		256
> +#define CONFIG_SYS_MAXARGS		16
> +#define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
> +#define CONFIG_SYS_LONGHELP		1
> +#define CONFIG_CMDLINE_EDITING	1
> +
> +#define ROUND(A, B)		(((A) + (B)) & ~((B) - 1))
no-need please remove
> +/*
> + * Size of malloc() pool
> + */
Best Regards,
J.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH 03/03 v3] Add support for Olimex SAM9-L9260 SBC
  2009-07-15 16:00 ` [U-Boot] [PATCH 03/03 v3] Add support for Olimex SAM9-L9260 SBC Dimitar Dimitrov
@ 2009-07-18 21:13   ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-07-18 21:13 UTC (permalink / raw)
  To: u-boot

On 19:00 Wed 15 Jul     , Dimitar Dimitrov wrote:
> The SAM9-L9260 board support is based on code for AT91SAM9260EK. Networking
> is missing and will be added after the MACB support for AT91 boards is
> fixed to comply with U-Boot guide-lines.
> 
> Signed-off-by: Dimitar Dimitrov <dinuxbg@gmail.com>
> ---
same as 9261
could you regenerate it with
git format-patch -M -B -C 
>  MAINTAINERS                          |    1 +
>  MAKEALL                              |    1 +
>  Makefile                             |   17 +++
>  board/olimex/sam9_l9260/Makefile     |   56 +++++++++
>  board/olimex/sam9_l9260/config.mk    |    1 +
>  board/olimex/sam9_l9260/led.c        |   41 +++++++
>  board/olimex/sam9_l9260/partition.c  |   40 +++++++
>  board/olimex/sam9_l9260/sam9_l9260.c |  111 ++++++++++++++++++
>  include/configs/sam9_l9260.h         |  214 ++++++++++++++++++++++++++++++++++
<snip>
> +
> +#define CONFIG_ARM926EJS	1	/* This is an ARM926EJS Core	*/
> +
> +#define AT91_CPU_NAME		"AT91SAM9260"
no-need please remove
> +#define CONFIG_AT91SAM9260	1	/* It's an Atmel AT91SAM9260 SoC*/
> +#define CONFIG_SAM9_L9260	1	/* on an SAM9_L9260 Board	*/
> +
> +#define CONFIG_ARCH_CPU_INIT
> +#undef CONFIG_USE_IRQ			/* we don't need IRQ/FIQ stuff	*/
> +
> +#define CONFIG_CMDLINE_TAG	1	/* enable passing of ATAGs	*/
> +#define CONFIG_SETUP_MEMORY_TAGS 1
> +#define CONFIG_INITRD_TAG	1
> +
> +#define CONFIG_SKIP_LOWLEVEL_INIT
> +#define CONFIG_SKIP_RELOCATE_UBOOT
> +
> +/*
> + * Hardware drivers
> + */
> +#define CONFIG_ATMEL_USART	1
> +#undef CONFIG_USART0
> +#undef CONFIG_USART1
> +#undef CONFIG_USART2
> +#define CONFIG_USART3		1	/* USART 3 is DBGU */
> +
> +/* LED */
> +#define CONFIG_AT91_LED
> +#define	CONFIG_RED_LED		AT91_PIN_PA9	/* this is the power led */
> +#define	CONFIG_GREEN_LED	AT91_PIN_PA6	/* this is the user led */
please fix the indent
> +
> +#define CONFIG_BOOTDELAY	3
> +
> +/*
> + * BOOTP options
> + */
> +#define CONFIG_BOOTP_BOOTFILESIZE	1
> +#define CONFIG_BOOTP_BOOTPATH		1
> +#define CONFIG_BOOTP_GATEWAY		1
> +#define CONFIG_BOOTP_HOSTNAME		1
<snip>
> +
> +#define CONFIG_BAUDRATE		115200
> +#define CONFIG_SYS_BAUDRATE_TABLE	{115200 , 19200, 38400, 57600, 9600 }
> +
> +#define CONFIG_SYS_PROMPT		"U-Boot> "
> +#define CONFIG_SYS_CBSIZE		256
> +#define CONFIG_SYS_MAXARGS		16
> +#define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
> +#define CONFIG_SYS_LONGHELP		1
> +#define CONFIG_CMDLINE_EDITING	1
> +
> +#define ROUND(A, B)		(((A) + (B)) & ~((B) - 1))
no-need please remove
> +/*
> + * Size of malloc() pool
> + */
Best Regards,
J.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-07-18 20:58 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2009-07-18 23:34   ` Anatolij Gustschin
  2009-07-19  9:34     ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 13+ messages in thread
From: Anatolij Gustschin @ 2009-07-18 23:34 UTC (permalink / raw)
  To: u-boot

Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 18:56 Wed 15 Jul     , Dimitar Dimitrov wrote:
...
>> --- a/drivers/video/atmel_lcdfb.c
>> +++ b/drivers/video/atmel_lcdfb.c
>> @@ -112,6 +112,9 @@ void lcd_ctrl_init(void *lcdbase)
>>  
>>  	value |= panel_info.vl_sync;
>>  	value |= (panel_info.vl_bpix << 5);
>> +#if defined(CONFIG_LCD_INVERTED_CLOCK)
>> +	value |= ATMEL_LCDC_INVCLK_INVERTED;
>> +#endif
> NACK
> 	do this throught the struct via vl_sync as in linux

actually the "vl_sync" is supposed to contain HSYNC and VSYNC
polarity flags and not the dot clock polarity. The Linux driver in
mainline uses var.sync for this purpose too, and doesn't set
inverted dot clock polarity at all.
This definition in struct vidinfo for Atmel LCD
	/* LCD configuration register */
        u_long vl_sync;         /* Horizontal / vertical sync */
        u_long vl_bpix;         /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8,
				 4 = 16 */
        u_long vl_tft;          /* 0 = passive, 1 = TFT */

is confusing. If these fields are supposed to contain flags
for LCD configuration register LCDCON2 then we should define
only one "u_long lcdcon2" field containing all the flags/fields
for sync polarity, bpp, clock polarity, scan mode, display type,
interface width, LCDD, LCDDEN polarities, LCDDOTCLK mode and memory
ordering format. We are wasting tree u_longs here and are not even
able to use half of the possible settings for LCDCON2 register.
I would rather fix the struct vidinfo for Atmel LCD so that
people could set needed flags in the board code, e.g.:

vidinfo_t panel_info = {
	...
	lcdcon2:	ATMEL_LCDC_INVLINE_INVERTED |
                        ATMEL_LCDC_INVFRAME_INVERTED |
			ATMEL_LCDC_INVCLK_INVERTED;
	...
}

I don't have the Atmel hardware to test/fix this change however.

Best regards,
Anatolij

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-07-18 23:34   ` Anatolij Gustschin
@ 2009-07-19  9:34     ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-07-19  9:34 UTC (permalink / raw)
  To: u-boot

> This definition in struct vidinfo for Atmel LCD
> 	/* LCD configuration register */
>         u_long vl_sync;         /* Horizontal / vertical sync */
>         u_long vl_bpix;         /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8,
> 				 4 = 16 */
>         u_long vl_tft;          /* 0 = passive, 1 = TFT */
> 
> is confusing. If these fields are supposed to contain flags
> for LCD configuration register LCDCON2 then we should define
> only one "u_long lcdcon2" field containing all the flags/fields
> for sync polarity, bpp, clock polarity, scan mode, display type,
> interface width, LCDD, LCDDEN polarities, LCDDOTCLK mode and memory
> ordering format. We are wasting tree u_longs here and are not even
> able to use half of the possible settings for LCDCON2 register.
> I would rather fix the struct vidinfo for Atmel LCD so that
> people could set needed flags in the board code, e.g.:
> 
> vidinfo_t panel_info = {
> 	...
> 	lcdcon2:	ATMEL_LCDC_INVLINE_INVERTED |
>                         ATMEL_LCDC_INVFRAME_INVERTED |
> 			ATMEL_LCDC_INVCLK_INVERTED;
> 	...
> }
I disagree here we must not make the panel_info atmel specific that way
we can add fields to pass atmel specific info which are pass via
struct atmel_lcdfb_info in Linux
But we need to be sync with linux as possible to simplify port and bugfix.

btw on Linux you do not specify it directly you specific this
FB_SYNC_HOR_HIGH_ACT	=> ATMEL_LCDC_INVLINE_INVERTED
FB_SYNC_VERT_HIGH_ACT	=> ATMEL_LCDC_INVFRAME_INVERTED

Best Regards,
J.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-07-18 19:18 ` [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Anatolij Gustschin
@ 2009-07-25 20:28   ` Anatolij Gustschin
  0 siblings, 0 replies; 13+ messages in thread
From: Anatolij Gustschin @ 2009-07-25 20:28 UTC (permalink / raw)
  To: u-boot

Anatolij Gustschin wrote:
> Dimitar Dimitrov wrote:
>> This is my third try for Olimex SAM9-L9260/61 board support patches. 
>>
>> Here follows the first patch.
>> ---
>>
>> Boards utilizing the Atmel LCD driver can now specify that the LCD clock must
>> be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK.
>> ---
>>  README                      |    5 +++++
>>  drivers/video/atmel_lcdfb.c |    3 +++
>>  2 files changed, 8 insertions(+), 0 deletions(-)
> 
> Applied to u-boot-video after fixing commit message and adding
> your Signed-off-by line. Also please check for trailing white
> spaces next time. Thanks!

now i removed this patch from u-boot-video due to NACK from
Jean-Christophe. 

Best regards,
Anatolij

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-07-15 15:56 [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Dimitar Dimitrov
                   ` (3 preceding siblings ...)
  2009-07-18 20:58 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2009-11-22 21:01 ` Wolfgang Denk
  2009-11-24 19:47   ` Dimitar Dimitrov
  4 siblings, 1 reply; 13+ messages in thread
From: Wolfgang Denk @ 2009-11-22 21:01 UTC (permalink / raw)
  To: u-boot

Dear Dimitar Dimitrov,

In message <200907151856.24888.dinuxbg@gmail.com> you wrote:
> This is my third try for Olimex SAM9-L9260/61 board support patches. 
> 
> Here follows the first patch.
> ---
> 
> Boards utilizing the Atmel LCD driver can now specify that the LCD clock must
> be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK.
> ---
>  README                      |    5 +++++
>  drivers/video/atmel_lcdfb.c |    3 +++
>  2 files changed, 8 insertions(+), 0 deletions(-)

I think we are stillw aiting for a re-submit of this patch after
cleaning up?

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
There comes to all races an ultimate crisis which  you  have  yet  to
face  ....  One  day  our  minds became so powerful we dared think of
ourselves as gods.
	-- Sargon, "Return to Tomorrow", stardate 4768.3

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-11-22 21:01 ` Wolfgang Denk
@ 2009-11-24 19:47   ` Dimitar Dimitrov
  2009-12-05  0:10     ` Wolfgang Denk
  0 siblings, 1 reply; 13+ messages in thread
From: Dimitar Dimitrov @ 2009-11-24 19:47 UTC (permalink / raw)
  To: u-boot

On Sunday 22 November 2009, Wolfgang Denk wrote:
> Dear Dimitar Dimitrov,
> 
> In message <200907151856.24888.dinuxbg@gmail.com> you wrote:
> > This is my third try for Olimex SAM9-L9260/61 board support patches. 
> > 
> > Here follows the first patch.
> > ---
> > 
> > Boards utilizing the Atmel LCD driver can now specify that the LCD clock must
> > be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK.
> > ---
> >  README                      |    5 +++++
> >  drivers/video/atmel_lcdfb.c |    3 +++
> >  2 files changed, 8 insertions(+), 0 deletions(-)
> 
> I think we are stillw aiting for a re-submit of this patch after
> cleaning up?
> 
> Best regards,
> 
> Wolfgang Denk
> 
I can regenerate the patches for the latest GIT. If someone is willing to try them please let me know. 

Unfortunately I don't have the boards anymore so I can't verify that the new patches and new u-boot will work. That's why I avoid resubmission in this RC window.

Regards,
Dimitar

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
  2009-11-24 19:47   ` Dimitar Dimitrov
@ 2009-12-05  0:10     ` Wolfgang Denk
  0 siblings, 0 replies; 13+ messages in thread
From: Wolfgang Denk @ 2009-12-05  0:10 UTC (permalink / raw)
  To: u-boot

Dear Dimitar Dimitrov,

In message <200911242147.04900.dinuxbg@gmail.com> you wrote:
>
> I can regenerate the patches for the latest GIT. If someone is willing to try them please let me know. 
> 
> Unfortunately I don't have the boards anymore so I can't verify that the new patches and new u-boot will work. That's why I avoid resubmission in this RC window.

Please clean up and resubmit, and mark the patches as "for `next'" so
we know they should go into the "next" branch.  Thanks in advance.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Keep your eyes wide open before marriage, half shut afterwards.
                                                 -- Benjamin Franklin

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2009-12-05  0:10 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-15 15:56 [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Dimitar Dimitrov
2009-07-15 15:58 ` [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC Dimitar Dimitrov
2009-07-18 21:09   ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-15 16:00 ` [U-Boot] [PATCH 03/03 v3] Add support for Olimex SAM9-L9260 SBC Dimitar Dimitrov
2009-07-18 21:13   ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-18 19:18 ` [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Anatolij Gustschin
2009-07-25 20:28   ` Anatolij Gustschin
2009-07-18 20:58 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-18 23:34   ` Anatolij Gustschin
2009-07-19  9:34     ` Jean-Christophe PLAGNIOL-VILLARD
2009-11-22 21:01 ` Wolfgang Denk
2009-11-24 19:47   ` Dimitar Dimitrov
2009-12-05  0:10     ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox