Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
7c1f8b81
Commit
7c1f8b81
authored
Mar 16, 2020
by
Marcus Nordenberg
Committed by
Esteban Blanc
Dec 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
profibus: propagate state on shutdown
(cherry picked from commit 10a36c8aa94849ba8b8fa94a69cd102ffca037fb)
parent
970b5281
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
62 additions
and
43 deletions
+62
-43
profibus/lib/rt/src/rt_io_m_pb_dp_slave.c
profibus/lib/rt/src/rt_io_m_pb_dp_slave.c
+4
-4
profibus/lib/rt/src/rt_io_m_pb_fdl_datatransfer.c
profibus/lib/rt/src/rt_io_m_pb_fdl_datatransfer.c
+1
-1
profibus/lib/rt/src/rt_io_m_pb_fdl_sap.c
profibus/lib/rt/src/rt_io_m_pb_fdl_sap.c
+1
-1
profibus/lib/rt/src/rt_io_m_pb_ii.c
profibus/lib/rt/src/rt_io_m_pb_ii.c
+2
-2
profibus/lib/rt/src/rt_io_m_pb_io.c
profibus/lib/rt/src/rt_io_m_pb_io.c
+2
-2
profibus/lib/rt/src/rt_io_m_pb_profiboard.c
profibus/lib/rt/src/rt_io_m_pb_profiboard.c
+52
-33
No files found.
profibus/lib/rt/src/rt_io_m_pb_dp_slave.c
View file @
7c1f8b81
...
...
@@ -96,7 +96,7 @@ static pwr_tStatus IoRackInit(io_tCtx ctx, io_sAgent* ap, io_sRack* rp)
local
->
dp
=
1
;
sts
=
gdh_ObjidToName
(
rp
->
Objid
,
(
char
*
)
&
name
,
sizeof
(
name
),
cdh_mNName
);
errh_Info
(
"
Init of Profibus DP Slave and M
odules %s"
,
name
);
errh_Info
(
"
PROFIBUS: Init of DP slave and m
odules %s"
,
name
);
op
=
(
pwr_sClass_Pb_DP_Slave
*
)
rp
->
op
;
...
...
@@ -203,7 +203,7 @@ static pwr_tStatus IoRackInit(io_tCtx ctx, io_sAgent* ap, io_sRack* rp)
GetChanSize
(((
pwr_sClass_ChanIi
*
)
chanp
->
cop
)
->
Representation
);
break
;
default:
errh_Error
(
"Diagnostic channel class, card %s"
,
cardp
->
Name
);
errh_Error
(
"
PROFIBUS:
Diagnostic channel class, card %s"
,
cardp
->
Name
);
}
continue
;
}
...
...
@@ -366,13 +366,13 @@ static pwr_tStatus IoRackRead(io_tCtx ctx, io_sAgent* ap, io_sRack* rp)
if
(
sp
->
ErrorCount
==
sp
->
ErrorSoftLimit
)
{
errh_Error
(
"
IO Error soft limit reached on card
'%s'"
,
rp
->
Name
);
errh_Error
(
"
PROFIBUS: IO Error soft limit reached on device
'%s'"
,
rp
->
Name
);
ctx
->
IOHandler
->
CardErrorSoftLimit
=
1
;
ctx
->
IOHandler
->
ErrorSoftLimitObject
=
cdh_ObjidToAref
(
rp
->
Objid
);
}
if
(
sp
->
ErrorCount
==
sp
->
ErrorHardLimit
)
{
errh_Error
(
"
IO Error hard limit reached on card
'%s', stall action %d"
,
errh_Error
(
"
PROFIBUS: IO Error hard limit reached on device
'%s', stall action %d"
,
rp
->
Name
,
sp
->
StallAction
);
ctx
->
IOHandler
->
CardErrorHardLimit
=
1
;
ctx
->
IOHandler
->
ErrorHardLimitObject
=
cdh_ObjidToAref
(
rp
->
Objid
);
...
...
profibus/lib/rt/src/rt_io_m_pb_fdl_datatransfer.c
View file @
7c1f8b81
...
...
@@ -225,7 +225,7 @@ static pwr_tStatus IoCardInit(io_tCtx ctx, io_sAgent* ap, io_sRack* rp,
if
(
local
->
output_area_size
>
0
)
local
->
output_area
=
calloc
(
1
,
local
->
output_area_size
);
errh_Info
(
"
Init of Profibus
FDL Data transfer '%s'"
,
cp
->
Name
);
errh_Info
(
"
PROFIBUS: Init of
FDL Data transfer '%s'"
,
cp
->
Name
);
op
->
Status
=
PB__NORMAL
;
...
...
profibus/lib/rt/src/rt_io_m_pb_fdl_sap.c
View file @
7c1f8b81
...
...
@@ -63,7 +63,7 @@ static pwr_tStatus IoRackInit(io_tCtx ctx, io_sAgent* ap, io_sRack* rp)
pwr_tStatus
sts
;
sts
=
gdh_ObjidToName
(
rp
->
Objid
,
(
char
*
)
&
name
,
sizeof
(
name
),
cdh_mNName
);
errh_Info
(
"
Init of Profibus
FDL SAP %s"
,
name
);
errh_Info
(
"
PROFIBUS: Init of
FDL SAP %s"
,
name
);
local
=
calloc
(
1
,
sizeof
(
*
local
));
rp
->
Local
=
local
;
...
...
profibus/lib/rt/src/rt_io_m_pb_ii.c
View file @
7c1f8b81
...
...
@@ -62,12 +62,12 @@ static pwr_tStatus IoCardInit(io_tCtx ctx, io_sAgent* ap, io_sRack* rp,
if
(
rp
->
Class
!=
pwr_cClass_Pb_DP_Slave
)
{
errh_Info
(
"Illegal object type %s"
,
cp
->
Name
);
errh_Info
(
"
PROFIBUS:
Illegal object type %s"
,
cp
->
Name
);
return
IO__SUCCESS
;
}
if
(
op
->
Status
<
PB_MODULE_STATE_OPERATE
)
errh_Info
(
"Error initializing Pb module Ii %s"
,
cp
->
Name
);
errh_Info
(
"
PROFIBUS:
Error initializing Pb module Ii %s"
,
cp
->
Name
);
return
IO__SUCCESS
;
}
...
...
profibus/lib/rt/src/rt_io_m_pb_io.c
View file @
7c1f8b81
...
...
@@ -60,13 +60,13 @@ static pwr_tStatus IoCardInit(io_tCtx ctx, io_sAgent* ap, io_sRack* rp,
if
(
rp
->
Class
!=
pwr_cClass_Pb_DP_Slave
)
{
errh_Info
(
"Illegal object type %s"
,
cp
->
Name
);
errh_Info
(
"
PROFIBUS:
Illegal object type %s"
,
cp
->
Name
);
return
IO__SUCCESS
;
}
if
(
op
->
Status
<
PB_MODULE_STATE_OPERATE
)
{
errh_Info
(
"Error initializing Pb module Io %s"
,
cp
->
Name
);
errh_Info
(
"
PROFIBUS:
Error initializing Pb module Io %s"
,
cp
->
Name
);
}
return
IO__SUCCESS
;
...
...
profibus/lib/rt/src/rt_io_m_pb_profiboard.c
View file @
7c1f8b81
...
...
@@ -709,7 +709,7 @@ dp_get_slave_diag_con(T_DP_GET_SLAVE_DIAG_CON* get_slave_diag_con_ptr,
get_slave_diag_con_ptr
->
diag_data_len
-
DP_MIN_SLAVE_DIAG_LEN
,
get_slave_diag_con_ptr
->
diag_entries
);
errh_Info
(
"P
rofibus
DP slave diag - %s"
,
s
);
errh_Info
(
"P
ROFIBUS:
DP slave diag - %s"
,
s
);
}
}
/* diag_data_len */
...
...
@@ -1228,18 +1228,18 @@ void* handle_events(void* ptr)
if
(
op
->
Status
==
PB__NOTINIT
)
{
op
->
Status
=
PB__STOPPED
;
errh_Info
(
"P
rofibus
DP Master %s to state STOPPED"
,
ap
->
Name
);
errh_Info
(
"P
ROFIBUS:
DP Master %s to state STOPPED"
,
ap
->
Name
);
dp_act_param_loc
(
DP_OP_MODE_CLEAR
);
}
else
if
(
op
->
Status
==
PB__STOPPED
)
{
op
->
Status
=
PB__CLEARED
;
errh_Info
(
"P
rofibus
DP Master %s to state CLEARED"
,
ap
->
Name
);
errh_Info
(
"P
ROFIBUS:
DP Master %s to state CLEARED"
,
ap
->
Name
);
dp_act_param_loc
(
DP_OP_MODE_OPERATE
);
}
else
if
(
op
->
Status
==
PB__CLEARED
)
{
errh_Info
(
"P
rofibus
DP Master %s to state OPERATE"
,
ap
->
Name
);
errh_Info
(
"P
ROFIBUS:
DP Master %s to state OPERATE"
,
ap
->
Name
);
op
->
Status
=
PB__NORMAL
;
if
(
!
local
->
slave_diag_requested
&&
local
->
parallel_service
)
...
...
@@ -1270,7 +1270,7 @@ void* handle_events(void* ptr)
if
(
get_slave_diag_con_ptr
->
diag_entries
<
0
)
{
errh_Warning
(
"P
rofibus - diagnostic circular buffer owerflow.
"
);
errh_Warning
(
"P
ROFIBUS: Diagnostic circular buffer owerflow
"
);
}
if
(
get_slave_diag_con_ptr
->
diag_entries
)
...
...
@@ -1292,7 +1292,7 @@ void* handle_events(void* ptr)
else
{
op
->
Status
=
PB__NOTINIT
;
errh_Error
(
"P
rofibus
DP Master %s - %x neg con rec"
,
ap
->
Name
,
errh_Error
(
"P
ROFIBUS:
DP Master %s - %x neg con rec"
,
ap
->
Name
,
*
((
unsigned
short
*
)
con_ind_buffer
));
}
/* else POS */
}
/* if CON */
...
...
@@ -1331,7 +1331,7 @@ void* handle_events(void* ptr)
}
}
errh_Info
(
"P
rofibus
DP Master %s - %s"
,
ap
->
Name
,
s
);
errh_Info
(
"P
ROFIBUS:
DP Master %s - %s"
,
ap
->
Name
,
s
);
if
(
usif_state
==
DP_OP_MODE_STOP
)
{
...
...
@@ -1363,7 +1363,7 @@ void* handle_events(void* ptr)
if
(
get_slave_diag_con_ptr
->
diag_entries
<
0
)
{
errh_Warning
(
"P
rofibus - diagnostic circular buffer owerflow.
"
);
errh_Warning
(
"P
ROFIBUS: Diagnostic circular buffer owerflow
"
);
}
if
((
get_slave_diag_con_ptr
->
diag_entries
)
&&
...
...
@@ -1377,7 +1377,7 @@ void* handle_events(void* ptr)
}
else
{
errh_Warning
(
"P
rofibus - Request for diag failed.
"
);
errh_Warning
(
"P
ROFIBUS: Request for diag failed
"
);
}
}
else
...
...
@@ -1400,7 +1400,7 @@ void* handle_events(void* ptr)
else
{
op
->
Status
=
PB__NOTINIT
;
errh_Error
(
"P
rofibus
DP Master %s - %x neg ind rec"
,
ap
->
Name
,
errh_Error
(
"P
ROPFIBUS:
DP Master %s - %x neg ind rec"
,
ap
->
Name
,
*
((
unsigned
short
*
)
con_ind_buffer
));
}
/* else POS */
}
/* if IND */
...
...
@@ -1447,7 +1447,7 @@ void* handle_events(void* ptr)
}
/* switch reason */
errh_Info
(
"P
rofibus
DP Master %s - %s"
,
ap
->
Name
,
s
);
errh_Info
(
"P
ROFIBUS:
DP Master %s - %s"
,
ap
->
Name
,
s
);
break
;
}
/* case FMB_FM2_EVENT */
...
...
@@ -1583,7 +1583,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
ap
->
Local
=
calloc
(
1
,
sizeof
(
io_sAgentLocal
));
if
(
!
ap
->
Local
)
{
errh_Error
(
"
ERROR config Profibus
DP Master %s - %s"
,
ap
->
Name
,
"calloc"
);
errh_Error
(
"
PROFIBUS: ERROR config
DP Master %s - %s"
,
ap
->
Name
,
"calloc"
);
return
IO__ERRINIDEVICE
;
}
...
...
@@ -1600,14 +1600,14 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
nanosleep
(
&
rqtp
,
NULL
);
}
errh_Info
(
"
Initializing interface for Profibus
DP Master %s"
,
ap
->
Name
);
errh_Info
(
"
PROFIBUS: Initializing interface for
DP Master %s"
,
ap
->
Name
);
sts
=
profi_init
((
unsigned
char
)
op
->
BusNumber
-
1
,
0
,
0
);
if
(
sts
!=
E_OK
)
{
/* Can't open driver */
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus
DP Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config
DP Master %s - %s"
,
ap
->
Name
,
"open device"
);
ctx
->
Node
->
EmergBreakTrue
=
1
;
return
IO__ERRDEVICE
;
...
...
@@ -1619,20 +1619,20 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
(
ctx
->
Process
!=
io_mProcess_Profibus
))
{
op
->
Status
=
PB__NOTINIT
;
errh_Info
(
"
Init template I/O agent for Profibus DP Master %s, %d"
,
ap
->
Name
,
ctx
->
Process
);
errh_Info
(
"
PROFIBUS: Init template I/O agent for DP Master %s, %d"
,
ap
->
Name
,
ctx
->
Process
);
return
IO__SUCCESS
;
}
if
(
ctx
->
Node
->
Restarts
>
0
)
{
errh_Info
(
"
Warm restart - Skipping config of Profibus
DP Master %s"
,
errh_Info
(
"
PROFIBUS: Warm restart - Skipping config of
DP Master %s"
,
ap
->
Name
);
op
->
Status
=
PB__NORMAL
;
// return IO__SUCCESS;
}
errh_Info
(
"
Config of Profibus
DP Master %s"
,
ap
->
Name
);
errh_Info
(
"
PROFIBUS: Config of
DP Master %s"
,
ap
->
Name
);
if
(
op
->
DisableBus
!=
1
)
{
...
...
@@ -1651,7 +1651,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
!
sts
)
{
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus DP
Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config DP
Master %s - %s"
,
ap
->
Name
,
"fmb set configuration"
);
retry
++
;
if
(
retry
<
2
)
...
...
@@ -1670,7 +1670,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
!
sts
)
{
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus
DP Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config
DP Master %s - %s"
,
ap
->
Name
,
"dp init master"
);
return
IO__ERRINIDEVICE
;
}
...
...
@@ -1684,7 +1684,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
!
sts
)
{
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus
DP Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config
DP Master %s - %s"
,
ap
->
Name
,
"dp download bus"
);
return
IO__ERRINIDEVICE
;
}
...
...
@@ -1695,7 +1695,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
!
sts
)
{
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus
FDL Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config
FDL Master %s - %s"
,
ap
->
Name
,
"fmb set busparam"
);
return
IO__ERRINIDEVICE
;
}
...
...
@@ -1708,7 +1708,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
!
sts
)
{
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus
Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config
Master %s - %s"
,
ap
->
Name
,
"fmb set busparam"
);
return
IO__ERRINIDEVICE
;
}
...
...
@@ -1716,7 +1716,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
!
sts
)
{
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus
DP Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config
DP Master %s - %s"
,
ap
->
Name
,
"dp set busparam"
);
return
IO__ERRINIDEVICE
;
}
...
...
@@ -1743,13 +1743,13 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
cid
==
pwr_cClass_Pb_DP_Slave
)
{
errh_Info
(
"
Download Profibus
DP Slave config - %s"
,
name
);
errh_Info
(
"
PROFIBUS: Download
DP Slave config - %s"
,
name
);
status
=
dp_download_slave
((
pwr_sClass_Pb_DP_Slave
*
)
sop
);
if
(
!
status
)
{
errh_Error
(
"
ERROR Init Profibus
DP slave %s"
,
name
);
errh_Error
(
"
PROFIBUS: ERROR Init
DP slave %s"
,
name
);
}
op
->
NumberSlaves
++
;
...
...
@@ -1757,7 +1757,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
cid
==
pwr_cClass_Pb_FDL_SAP
)
{
errh_Info
(
"
Download Profibus
FDL SAP config - %s"
,
name
);
errh_Info
(
"
PROFIBUS: Download
FDL SAP config - %s"
,
name
);
if
(
!
((
pwr_sClass_Pb_FDL_SAP
*
)
sop
)
->
Responder
)
status
=
fdlif_sap_activate_req
((
pwr_sClass_Pb_FDL_SAP
*
)
sop
);
...
...
@@ -1767,7 +1767,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
!
status
)
{
((
pwr_sClass_Pb_FDL_SAP
*
)
sop
)
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR Init Profibus
FDL SAP %s"
,
name
);
errh_Error
(
"
PROFIBUS: ERROR Init
FDL SAP %s"
,
name
);
}
else
((
pwr_sClass_Pb_FDL_SAP
*
)
sop
)
->
Status
=
PB__NORMAL
;
...
...
@@ -1805,7 +1805,7 @@ static pwr_tStatus IoAgentInit(io_tCtx ctx, io_sAgent* ap)
if
(
sts
!=
E_OK
)
{
op
->
Status
=
PB__INITFAIL
;
errh_Error
(
"
ERROR config Profibus
DP Master %s - %s"
,
ap
->
Name
,
errh_Error
(
"
PROFIBUS: ERROR config
DP Master %s - %s"
,
ap
->
Name
,
"act param loc to STOPPED"
);
return
IO__ERRINIDEVICE
;
}
...
...
@@ -1959,6 +1959,9 @@ static pwr_tStatus IoAgentClose(io_tCtx ctx, io_sAgent* ap)
T_PROFI_SERVICE_DESCR
con_ind_sdb
;
INT16
result
;
/* !!! local result variable !!! */
if
(
ctx
->
Node
->
EmergBreakTrue
==
1
)
errh_Fatal
(
"PROFIBUS: Emergency break detected! Shutting down PROFIBUS!"
);
local
=
(
io_sAgentLocal
*
)
ap
->
Local
;
if
(
!
local
)
return
IO__SUCCESS
;
...
...
@@ -1988,12 +1991,28 @@ static pwr_tStatus IoAgentClose(io_tCtx ctx, io_sAgent* ap)
profi_end
();
pthread_mutex_unlock
(
&
local
->
mutex
);
// Iterate through all devices and propagate stopped state to all children
if
(
ap
)
{
((
pwr_sClass_Pb_Profiboard
*
)
ap
->
op
)
->
Status
=
PB__STOPPED
;
io_sRack
*
device
;
io_sCard
*
module
;
pwr_sClass_Pb_DP_Slave
*
dev
;
pwr_sClass_Pb_Module
*
mod
;
for
(
device
=
ap
->
racklist
;
device
!=
NULL
;
device
=
device
->
next
)
{
dev
=
(
pwr_sClass_Pb_DP_Slave
*
)
device
->
op
;
dev
->
Status
=
PB__STOPPED
;
for
(
module
=
device
->
cardlist
;
module
!=
NULL
;
module
=
module
->
next
)
{
mod
=
(
pwr_sClass_Pb_Module
*
)
module
->
op
;
mod
->
Status
=
PB__STOPPED
;
}
}
}
free
((
char
*
)
local
);
if
(
ctx
->
Node
->
EmergBreakTrue
==
1
)
errh_Fatal
(
"Emergency break detected shutting down profibus"
);
return
sts
;
}
...
...
@@ -2001,9 +2020,9 @@ static pwr_tStatus IoAgentSwap(io_tCtx ctx, io_sAgent* ap, io_eEvent event)
{
switch
(
event
)
{
case
io_eEvent_EmergencyBreak
:
case
io_eEvent_IoCommEmergencyBreak
:
IoAgentClose
(
ctx
,
ap
);
break
;
case
io_eEvent_IoCommEmergencyBreak
:
default:
break
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment