Skip to content
Snippets Groups Projects
Commit 2e3cb790 authored by dam1n19's avatar dam1n19
Browse files

Renamed some system signals to core

parent b2ba5b3f
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ module slcorem0 #( ...@@ -33,7 +33,7 @@ module slcorem0 #(
// System Reset Request Signals // System Reset Request Signals
input wire SYS_SYSRESETREQ, // System Request from System Managers input wire SYS_SYSRESETREQ, // System Request from System Managers
output wire SYS_PRMURESETREQ, // CPU Control Reset Request (PMU and Reset Unit) output wire CORE_PRMURESETREQ, // CPU Control Reset Request (PMU and Reset Unit)
// Generated Clocks and Resets // Generated Clocks and Resets
output wire SYS_PORESETn, // System Power On Reset output wire SYS_PORESETn, // System Power On Reset
...@@ -41,8 +41,8 @@ module slcorem0 #( ...@@ -41,8 +41,8 @@ module slcorem0 #(
output wire SYS_HRESETn, // AHB and System reset output wire SYS_HRESETn, // AHB and System reset
// Power Management Signals // Power Management Signals
input wire SYS_PMUENABLE, // Power Management Enable input wire CORE_PMUENABLE, // Power Management Enable
output wire SYS_PMUDBGRESETREQ, // Power Management Debug Reset Req output wire CORE_PMUDBGRESETREQ, // Power Management Debug Reset Req
// AHB Lite port // AHB Lite port
output wire [31:0] HADDR, // Address bus output wire [31:0] HADDR, // Address bus
...@@ -121,7 +121,7 @@ module slcorem0 #( ...@@ -121,7 +121,7 @@ module slcorem0 #(
.SYS_SYSRESETREQ (SYS_SYSRESETREQ), // System Reset Request .SYS_SYSRESETREQ (SYS_SYSRESETREQ), // System Reset Request
// Power Management Control Signals // Power Management Control Signals
.SYS_PMUENABLE (SYS_PMUENABLE), // PMU Enable from System Register .CORE_PMUENABLE (CORE_PMUENABLE), // PMU Enable from System Register
.CORE_WAKEUP (CORE_WAKEUP), // Wake-up Signaling from Core .CORE_WAKEUP (CORE_WAKEUP), // Wake-up Signaling from Core
.CORE_SLEEPDEEP (CORE_SLEEPDEEP), // Debug Power Up Request .CORE_SLEEPDEEP (CORE_SLEEPDEEP), // Debug Power Up Request
.CORE_GATEHCLK (CORE_GATEHCLK), // Control Signal from Core to Control Clock Gating of HCLK .CORE_GATEHCLK (CORE_GATEHCLK), // Control Signal from Core to Control Clock Gating of HCLK
...@@ -131,8 +131,8 @@ module slcorem0 #( ...@@ -131,8 +131,8 @@ module slcorem0 #(
.CORE_WICENREQ (CORE_WICENREQ), // Core WIC enable request from PMU .CORE_WICENREQ (CORE_WICENREQ), // Core WIC enable request from PMU
.CORE_SLEEPHOLDREQn (CORE_SLEEPHOLDREQn), // Core Sleep Hold Request .CORE_SLEEPHOLDREQn (CORE_SLEEPHOLDREQn), // Core Sleep Hold Request
.SYS_PRMURESETREQ (SYS_PRMURESETREQ), // Core Control System Reset Request .CORE_PRMURESETREQ (CORE_PRMURESETREQ), // Core Control System Reset Request
.SYS_PMUDBGRESETREQ (SYS_PMUDBGRESETREQ), // Core Power Management Unit Debug Reset Request .CORE_PMUDBGRESETREQ (CORE_PMUDBGRESETREQ), // Core Power Management Unit Debug Reset Request
// Power Management Ackowledge signals // Power Management Ackowledge signals
.CORE_WICENACK (CORE_WICENACK), // Wake-on-Interrupt Enable ACK from Core .CORE_WICENACK (CORE_WICENACK), // Wake-on-Interrupt Enable ACK from Core
......
...@@ -33,7 +33,7 @@ module slcorem0_prmu #( ...@@ -33,7 +33,7 @@ module slcorem0_prmu #(
input wire SYS_SYSRESETREQ, // System Reset Request input wire SYS_SYSRESETREQ, // System Reset Request
// Power Management Control Signals // Power Management Control Signals
input wire SYS_PMUENABLE, // PMU Enable from System Register input wire CORE_PMUENABLE, // PMU Enable from System Register
input wire CORE_WAKEUP, // Wakeup Signaling from Core input wire CORE_WAKEUP, // Wakeup Signaling from Core
input wire CORE_SLEEPDEEP, // Debug Power Up Request input wire CORE_SLEEPDEEP, // Debug Power Up Request
input wire CORE_GATEHCLK, // Control Signal from Core to Control Clock Gating of HCLK input wire CORE_GATEHCLK, // Control Signal from Core to Control Clock Gating of HCLK
...@@ -44,8 +44,8 @@ module slcorem0_prmu #( ...@@ -44,8 +44,8 @@ module slcorem0_prmu #(
output wire CORE_SLEEPHOLDREQn, // Core Sleep Hold Request output wire CORE_SLEEPHOLDREQn, // Core Sleep Hold Request
// System Reset Request Signals // System Reset Request Signals
output wire SYS_PRMURESETREQ, // Power and Reset Management System Reset Request output wire CORE_PRMURESETREQ, // Power and Reset Management System Reset Request
output wire SYS_PMUDBGRESETREQ, // Power Management Unit Debug Reset Request output wire CORE_PMUDBGRESETREQ, // Power Management Unit Debug Reset Request
// Power Management Ackowledge signals // Power Management Ackowledge signals
input wire CORE_WICENACK, // Wake-on-Interrupt Enable ACK from Core input wire CORE_WICENACK, // Wake-on-Interrupt Enable ACK from Core
...@@ -59,7 +59,7 @@ module slcorem0_prmu #( ...@@ -59,7 +59,7 @@ module slcorem0_prmu #(
wire CORE_RSTCTLHRESETREQ; wire CORE_RSTCTLHRESETREQ;
wire CORE_PMUHRESETREQ; wire CORE_PMUHRESETREQ;
assign SYS_PRMURESETREQ = CORE_PMUHRESETREQ | CORE_RSTCTLHRESETREQ; assign CORE_PRMURESETREQ = CORE_PMUHRESETREQ | CORE_RSTCTLHRESETREQ;
// ------------------------------- // -------------------------------
// Core Power Down Detection // Core Power Down Detection
...@@ -100,7 +100,7 @@ module slcorem0_prmu #( ...@@ -100,7 +100,7 @@ module slcorem0_prmu #(
.FCLK (SYS_FCLK), .FCLK (SYS_FCLK),
.PORESETn (SYS_PORESETn), .PORESETn (SYS_PORESETn),
.HRESETREQ (SYS_SYSRESETREQ), // from Cores / Watchdog / Debug Controller .HRESETREQ (SYS_SYSRESETREQ), // from Cores / Watchdog / Debug Controller
.PMUENABLE (SYS_PMUENABLE), // from System Controller .PMUENABLE (CORE_PMUENABLE), // from System Controller
.WICENACK (CORE_WICENACK), // from WIC in integration .WICENACK (CORE_WICENACK), // from WIC in integration
.WAKEUP (CORE_WAKEUP), // from WIC in integration .WAKEUP (CORE_WAKEUP), // from WIC in integration
...@@ -125,7 +125,7 @@ module slcorem0_prmu #( ...@@ -125,7 +125,7 @@ module slcorem0_prmu #(
.DBGISOLATEn ( ), .DBGISOLATEn ( ),
.DBGPWRDOWN (CORE_DBGPWRDOWN), .DBGPWRDOWN (CORE_DBGPWRDOWN),
.SLEEPHOLDREQn (CORE_SLEEPHOLDREQn), .SLEEPHOLDREQn (CORE_SLEEPHOLDREQn),
.PMUDBGRESETREQ (SYS_PMUDBGRESETREQ), .PMUDBGRESETREQ (CORE_PMUDBGRESETREQ),
.PMUHRESETREQ (CORE_PMUHRESETREQ) .PMUHRESETREQ (CORE_PMUHRESETREQ)
); );
...@@ -141,7 +141,7 @@ module slcorem0_prmu #( ...@@ -141,7 +141,7 @@ module slcorem0_prmu #(
.CORE_DCLK (CORE_DCLK), .CORE_DCLK (CORE_DCLK),
.SYS_SYSRESETREQ (SYS_SYSRESETREQ), .SYS_SYSRESETREQ (SYS_SYSRESETREQ),
.CORE_PMUHRESETREQ (CORE_PMUHRESETREQ), .CORE_PMUHRESETREQ (CORE_PMUHRESETREQ),
.SYS_PMUDBGRESETREQ (SYS_PMUDBGRESETREQ), .CORE_PMUDBGRESETREQ (CORE_PMUDBGRESETREQ),
.SYS_RSTBYPASS (SYS_TESTMODE), .SYS_RSTBYPASS (SYS_TESTMODE),
.SYS_SE (SYS_SCANENABLE), .SYS_SE (SYS_SCANENABLE),
......
...@@ -49,7 +49,7 @@ module slcorem0_rstctrl ...@@ -49,7 +49,7 @@ module slcorem0_rstctrl
SYS_PORESETn, SYS_HRESETn, CORE_HRESETn, CORE_DBGRESETn, SYS_HRESETREQ, SYS_PORESETn, SYS_HRESETn, CORE_HRESETn, CORE_DBGRESETn, SYS_HRESETREQ,
// Inputs // Inputs
SYS_GLOBALRESETn, SYS_FCLK, CORE_HCLK, CORE_DCLK, SYS_HCLK, SYS_SYSRESETREQ, SYS_GLOBALRESETn, SYS_FCLK, CORE_HCLK, CORE_DCLK, SYS_HCLK, SYS_SYSRESETREQ,
CORE_PMUHRESETREQ, SYS_PMUDBGRESETREQ, SYS_RSTBYPASS, SYS_SE CORE_PMUHRESETREQ, CORE_PMUDBGRESETREQ, SYS_RSTBYPASS, SYS_SE
); );
input SYS_GLOBALRESETn; // Global asynchronous reset input SYS_GLOBALRESETn; // Global asynchronous reset
...@@ -59,7 +59,7 @@ module slcorem0_rstctrl ...@@ -59,7 +59,7 @@ module slcorem0_rstctrl
input CORE_DCLK; // Debug clock (connect to DCLK of CORTEXM0INTEGRATION) input CORE_DCLK; // Debug clock (connect to DCLK of CORTEXM0INTEGRATION)
input SYS_SYSRESETREQ; // Synchronous (to HCLK) request for HRESETn from system input SYS_SYSRESETREQ; // Synchronous (to HCLK) request for HRESETn from system
input CORE_PMUHRESETREQ; // Synchronous (to CORE_HCLK) request for HRESETn from PMU input CORE_PMUHRESETREQ; // Synchronous (to CORE_HCLK) request for HRESETn from PMU
input SYS_PMUDBGRESETREQ; // Synchronous (to CORE_DCLK) request for DBGRESETn from PMU input CORE_PMUDBGRESETREQ; // Synchronous (to CORE_DCLK) request for DBGRESETn from PMU
input SYS_RSTBYPASS; // Reset synchroniser bypass (for DFT) input SYS_RSTBYPASS; // Reset synchroniser bypass (for DFT)
input SYS_SE; // Scan Enable (for DFT) input SYS_SE; // Scan Enable (for DFT)
...@@ -88,7 +88,7 @@ module slcorem0_rstctrl ...@@ -88,7 +88,7 @@ module slcorem0_rstctrl
cm0_rst_send_set u_dbgreset_req cm0_rst_send_set u_dbgreset_req
(.RSTn (SYS_PORESETn), (.RSTn (SYS_PORESETn),
.CLK (SYS_FCLK), .CLK (SYS_FCLK),
.RSTREQIN (SYS_PMUDBGRESETREQ), .RSTREQIN (CORE_PMUDBGRESETREQ),
.RSTREQOUT (dbg_reset_req_sync) .RSTREQOUT (dbg_reset_req_sync)
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment