summaryrefslogtreecommitdiffstats
path: root/u-boot/board/goldelico/panda-hybrid/pandahyb.c
diff options
context:
space:
mode:
Diffstat (limited to 'u-boot/board/goldelico/panda-hybrid/pandahyb.c')
-rw-r--r--u-boot/board/goldelico/panda-hybrid/pandahyb.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/u-boot/board/goldelico/panda-hybrid/pandahyb.c b/u-boot/board/goldelico/panda-hybrid/pandahyb.c
new file mode 100644
index 0000000..1ff467a
--- /dev/null
+++ b/u-boot/board/goldelico/panda-hybrid/pandahyb.c
@@ -0,0 +1,31 @@
+#include <common.h>
+#include <asm/arch/sys_proto.h>
+#include <asm/arch/mmc_host_def.h>
+#include "../../ti/panda/panda.h"
+#include "pandahyb.h"
+
+/*
+ somehow redefine:
+ const struct omap_sysinfo sysinfo = {
+ "Board: OMAP4 Panda\n"
+};
+*/
+
+// tamper with set_muxconf_regs() to extend its functionality
+
+void do_set_mux(u32 base, struct pad_conf_entry const *array, int size);
+void set_muxconf_regs_inherited(void);
+
+void set_muxconf_regs(void)
+{
+ set_muxconf_regs_inherited(); // call "superclass method"
+ do_set_mux(CONTROL_PADCONF_CORE, hybrid_padconf_array,
+ sizeof(hybrid_padconf_array) /
+ sizeof(struct pad_conf_entry));
+
+}
+
+// rename original definition in panda.c
+#define set_muxconf_regs set_muxconf_regs_inherited
+
+#include "../../ti/panda/panda.c"