Author: zbao
Date: 2009-11-25 08:48:24 +0100 (Wed, 25 Nov 2009)
New Revision: 4954
Modified:
trunk/src/mainboard/technexion/tim5690/Config.lb
trunk/src/mainboard/technexion/tim5690/Makefile.inc
trunk/src/mainboard/technexion/tim5690/cache_as_ram_auto.c
trunk/src/mainboard/technexion/tim5690/mainboard.c
trunk/src/mainboard/technexion/tim5690/tn_post_code.c
trunk/src/mainboard/technexion/tim5690/tn_post_code.h
Log:
This patch is buzzer of TechNexion TIM-5690.
Change EARLY_STAGE into __PRE_RAM__.
Signed-off-by: Libra Li <libra.li(a)technexion.com>
Acked-by: Zheng Bao <zheng.bao(a)amd.com>
Modified: trunk/src/mainboard/technexion/tim5690/Config.lb
===================================================================
--- trunk/src/mainboard/technexion/tim5690/Config.lb 2009-11-25 02:25:37 UTC (rev 4953)
+++ trunk/src/mainboard/technexion/tim5690/Config.lb 2009-11-25 07:48:24 UTC (rev 4954)
@@ -31,6 +31,7 @@
driver mainboard.o
object tn_post_code.o
+object speaker.o
#dir /drivers/si/3114
Modified: trunk/src/mainboard/technexion/tim5690/Makefile.inc
===================================================================
--- trunk/src/mainboard/technexion/tim5690/Makefile.inc 2009-11-25 02:25:37 UTC (rev 4953)
+++ trunk/src/mainboard/technexion/tim5690/Makefile.inc 2009-11-25 07:48:24 UTC (rev 4954)
@@ -32,6 +32,8 @@
# This is debug message for products of Technexion.
obj-y += tn_post_code.o
+obj-y += speaker.o
+
# This is part of the conversion to init-obj and away from included code.
initobj-y += crt0.o
Modified: trunk/src/mainboard/technexion/tim5690/cache_as_ram_auto.c
===================================================================
--- trunk/src/mainboard/technexion/tim5690/cache_as_ram_auto.c 2009-11-25 02:25:37 UTC (rev 4953)
+++ trunk/src/mainboard/technexion/tim5690/cache_as_ram_auto.c 2009-11-25 07:48:24 UTC (rev 4954)
@@ -100,8 +100,8 @@
#include "cpu/amd/model_fxx/fidvid.c"
-#define TECHNEXION_EARLY_SETUP
#include "tn_post_code.c"
+#include "speaker.c"
#if CONFIG_USE_FALLBACK_IMAGE == 1
@@ -249,6 +249,9 @@
soft_reset();
}
+ speaker_init(255);
+ speaker_on_nodelay();
+
allow_all_aps_stop(bsp_apicid);
/* It's the time to set ctrl now; */
@@ -261,6 +264,8 @@
sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
+ speaker_off_nodelay();
+
rs690_before_pci_init();
sb600_before_pci_init();
Modified: trunk/src/mainboard/technexion/tim5690/mainboard.c
===================================================================
--- trunk/src/mainboard/technexion/tim5690/mainboard.c 2009-11-25 02:25:37 UTC (rev 4953)
+++ trunk/src/mainboard/technexion/tim5690/mainboard.c 2009-11-25 07:48:24 UTC (rev 4954)
@@ -28,6 +28,7 @@
#include <../southbridge/amd/sb600/sb600.h>
#include "chip.h"
#include "tn_post_code.h"
+//#include "speaker.h" // test buzzer
#define ADT7461_ADDRESS 0x4C
#define ARA_ADDRESS 0x0C /* Alert Response Address */
@@ -184,6 +185,12 @@
uma_memory_base, uma_memory_size);
#endif
technexion_post_code(LED_MESSAGE_FINISH);
+ // test buzzer
+ //speaker_on_delay();
+ //speaker_off_delay();
+ //speaker_on_delay();
+ //speaker_off_nodelay();
+
}
struct chip_operations mainboard_ops = {
Modified: trunk/src/mainboard/technexion/tim5690/tn_post_code.c
===================================================================
--- trunk/src/mainboard/technexion/tim5690/tn_post_code.c 2009-11-25 02:25:37 UTC (rev 4953)
+++ trunk/src/mainboard/technexion/tim5690/tn_post_code.c 2009-11-25 07:48:24 UTC (rev 4954)
@@ -1,6 +1,26 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2009 Libra Li <libra.li(a)technexion.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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
-#ifdef TECHNEXION_EARLY_SETUP
+#ifdef __PRE_RAM__
+
#include <arch/cpu.h>
#include "southbridge/amd/sb600/sb600.h"
@@ -14,7 +34,7 @@
#include "tn_post_code.h"
-#ifdef TECHNEXION_EARLY_SETUP
+#ifdef __PRE_RAM__
// TechNexion's Post Code Initially.
void technexion_post_code_init(void)
@@ -116,7 +136,7 @@
device_t dev=0;
// SMBus Module and ACPI Block (Device 20, Function 0)
-#ifdef TECHNEXION_EARLY_SETUP
+#ifdef __PRE_RAM__
dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SB600_SM), 0);
#else
dev = dev_find_device(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SB600_SM, 0);
Modified: trunk/src/mainboard/technexion/tim5690/tn_post_code.h
===================================================================
--- trunk/src/mainboard/technexion/tim5690/tn_post_code.h 2009-11-25 02:25:37 UTC (rev 4953)
+++ trunk/src/mainboard/technexion/tim5690/tn_post_code.h 2009-11-25 07:48:24 UTC (rev 4954)
@@ -1,11 +1,29 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2009 Libra Li <libra.li(a)technexion.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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
-
#define LED_MESSAGE_START 0xFF
#define LED_MESSAGE_FINISH 0x99
#define LED_MESSAGE_RAM 0x01
-#ifdef TECHNEXION_EARLY_SETUP
+#ifdef __PRE_RAM__
// TechNexion's Post Code Initially.
void technexion_post_code_init(void);