summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boards/freescale-p2020rdb/law.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/boards/freescale-p2020rdb/law.c')
-rw-r--r--arch/powerpc/boards/freescale-p2020rdb/law.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/powerpc/boards/freescale-p2020rdb/law.c b/arch/powerpc/boards/freescale-p2020rdb/law.c
new file mode 100644
index 0000000000..e76b9cb0f5
--- /dev/null
+++ b/arch/powerpc/boards/freescale-p2020rdb/law.c
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2009-2010 Freescale Semiconductor, Inc.
+ *
+ * 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.
+ *
+ */
+
+#include <common.h>
+#include <asm/fsl_law.h>
+#include <asm/mmu.h>
+
+struct law_entry law_table[] = {
+ FSL_SET_LAW(CFG_FLASH_BASE_PHYS, LAW_SIZE_16M, LAW_TRGT_IF_LBC),
+};
+
+int num_law_entries = ARRAY_SIZE(law_table);