Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F140143745
D14429.id72006.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D14429.id72006.diff
View Options
Index: sys/arm/xilinx/zy7_mp.c
===================================================================
--- sys/arm/xilinx/zy7_mp.c
+++ sys/arm/xilinx/zy7_mp.c
@@ -45,20 +45,59 @@
#include <arm/xilinx/zy7_machdep.h>
#include <arm/xilinx/zy7_reg.h>
-#define ZYNQ7_CPU1_ENTRY 0xfffffff0
+#define ZYNQ7_CPU1_ENTRY 0xfffffff0
-#define SCU_CONTROL_REG 0xf8f00000
-#define SCU_CONTROL_ENABLE (1 << 0)
+#define SCU_CONTROL_REG 0xf8f00000
+#define SCU_CONTROL_ENABLE 1
+#define SCU_CONFIG_REG 0xf8f00004
+#define SCU_CONFIG_N_CPUS_MASK 3
+#define SLCR_PSS_IDCODE 0xf8000530
+#define SLCR_PSS_IDCODE_DEVICE_MASK (0x1f << 12)
+#define SLCR_PSS_IDCODE_DEVICE_SHIFT 12
void
zynq7_mp_setmaxid(platform_t plat)
{
+ bus_space_handle_t slcr_handle;
+ int device_id;
+ bus_space_handle_t scu_handle;
- mp_maxid = 1;
- mp_ncpus = 2;
+ if (mp_ncpus != 0)
+ return;
+
+ /* Map in SLCR PSS_IDCODE register. */
+ if (bus_space_map(fdtbus_bs_tag, SLCR_PSS_IDCODE, 4, 0,
+ &slcr_handle) != 0)
+ panic("%s: Could not map SLCR IDCODE reg.\n", __func__);
+
+ device_id = (bus_space_read_4(fdtbus_bs_tag, slcr_handle, 0) &
+ SLCR_PSS_IDCODE_DEVICE_MASK) >> SLCR_PSS_IDCODE_DEVICE_SHIFT;
+
+ bus_space_unmap(fdtbus_bs_tag, slcr_handle, 4);
+
+ /*
+ * Zynq XC7z0xxS single core chips indicate incorrect number of CPUs in
+ * SCU configuration register.
+ */
+ if (device_id == 0x3 || device_id == 0x1c || device_id == 0x8) {
+ mp_maxid = 0;
+ mp_ncpus = 1;
+ return;
+ }
+
+ /* Map in SCU config register. */
+ if (bus_space_map(fdtbus_bs_tag, SCU_CONFIG_REG, 4, 0,
+ &scu_handle) != 0)
+ panic("zynq7_mp_setmaxid: Could not map SCU config reg.\n");
+
+ mp_maxid = bus_space_read_4(fdtbus_bs_tag, scu_handle, 0) &
+ SCU_CONFIG_N_CPUS_MASK;
+ mp_ncpus = mp_maxid + 1;
+
+ bus_space_unmap(fdtbus_bs_tag, scu_handle, 4);
}
-void
+void
zynq7_mp_start_ap(platform_t plat)
{
bus_space_handle_t scu_handle;
@@ -67,8 +106,8 @@
/* Map in SCU control register. */
if (bus_space_map(fdtbus_bs_tag, SCU_CONTROL_REG, 4,
- 0, &scu_handle) != 0)
- panic("platform_mp_start_ap: Couldn't map SCU config reg\n");
+ 0, &scu_handle) != 0)
+ panic("%s: Could not map SCU control reg.\n", __func__);
/* Set SCU enable bit. */
scu_ctrl = bus_space_read_4(fdtbus_bs_tag, scu_handle, 0);
@@ -80,7 +119,7 @@
/* Map in magic location to give entry address to CPU1. */
if (bus_space_map(fdtbus_bs_tag, ZYNQ7_CPU1_ENTRY, 4,
0, &ocm_handle) != 0)
- panic("platform_mp_start_ap: Couldn't map OCM\n");
+ panic("%s: Could not map OCM\n", __func__);
/* Write start address for CPU1. */
bus_space_write_4(fdtbus_bs_tag, ocm_handle, 0,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 21, 7:35 PM (16 h, 28 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27102956
Default Alt Text
D14429.id72006.diff (2 KB)
Attached To
Mode
D14429: Support single core Zynq devices (MiniZed).
Attached
Detach File
Event Timeline
Log In to Comment