summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2012-03-15 20:30:41 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2012-03-15 20:30:41 +0000
commitab44f81dde27cb645a2934e71956b40dc1eb581f (patch)
treedb6d4f3ac81b81405a353e95d49001200ac9eeb6
parent00378c0a7d0ef13ba02391176f9cf5db3a8f4dc3 (diff)
xpp: perl_modules: Remove /proc/xpp usage
* All references to old /proc/xpp interface were removed. * Everything is now done via sysfs Information has been available from /sys/bus/astribanks since before Dahdi-linux 2.2 . Signed-off-by: Oron Peled <oron.peled@xorcom.com> Acked-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@10492 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--xpp/perl_modules/Dahdi.pm1
-rw-r--r--xpp/perl_modules/Dahdi/Utils.pm1
-rw-r--r--xpp/perl_modules/Dahdi/Xpp.pm48
-rw-r--r--xpp/perl_modules/Dahdi/Xpp/Line.pm36
-rw-r--r--xpp/perl_modules/Dahdi/Xpp/Xbus.pm35
-rw-r--r--xpp/perl_modules/Dahdi/Xpp/Xpd.pm66
-rwxr-xr-xxpp/xpp_sync19
7 files changed, 26 insertions, 180 deletions
diff --git a/xpp/perl_modules/Dahdi.pm b/xpp/perl_modules/Dahdi.pm
index e17b939..c3bb2bc 100644
--- a/xpp/perl_modules/Dahdi.pm
+++ b/xpp/perl_modules/Dahdi.pm
@@ -34,7 +34,6 @@ hardware and loaded Dahdi devices.
our $virt_base;
our $proc_dahdi_base;
-our $proc_xpp_base;
our $proc_usb_base;
our $sys_base;
diff --git a/xpp/perl_modules/Dahdi/Utils.pm b/xpp/perl_modules/Dahdi/Utils.pm
index 4ca468b..31b1be7 100644
--- a/xpp/perl_modules/Dahdi/Utils.pm
+++ b/xpp/perl_modules/Dahdi/Utils.pm
@@ -32,7 +32,6 @@ BEGIN {
$Dahdi::virt_base = '';
}
$Dahdi::proc_dahdi_base = "$Dahdi::virt_base/proc/dahdi";
- $Dahdi::proc_xpp_base = "$Dahdi::virt_base/proc/xpp";
$Dahdi::proc_usb_base = "$Dahdi::virt_base/proc/bus/usb";
$Dahdi::sys_base = "$Dahdi::virt_base/sys";
}
diff --git a/xpp/perl_modules/Dahdi/Xpp.pm b/xpp/perl_modules/Dahdi/Xpp.pm
index 8280b5e..765b59e 100644
--- a/xpp/perl_modules/Dahdi/Xpp.pm
+++ b/xpp/perl_modules/Dahdi/Xpp.pm
@@ -104,8 +104,8 @@ sub by_xpporder {
=head1 xbuses([sort_order])
-Scans system (/proc and /sys) and returns a list of Astribank (Xbus)
-objects. The optional parameter sort_order is the order in which
+Scans system (via /sys) and returns a list of Astribank (Xbus)
+objects. The optional parameter sort_order is the order in which
the Astribanks will be returns:
@@ -249,53 +249,17 @@ sub xpd_of_span($) {
Gets (and optionally sets) the internal Astribanks synchronization
source. When used to set sync source, returns the original sync source.
-A synchronization source is a value valid writing into /proc/xpp/sync .
+A synchronization source is a value valid writing into
+ /sys/bus/astribanks/drivers/xppdrv/sync
For more information read that file and see README.Astribank .
=cut
-sub sync_via_proc {
- my $newsync = shift;
- my $result;
- my $newapi = 0;
-
- my $proc_base = $Dahdi::proc_xpp_base;
- my $file = "$proc_base/sync";
- return '' unless -f $file;
- # First query
- open(F, "$file") or die "Failed to open $file for reading: $!";
- while(<F>) {
- chomp;
- /SYNC=/ and $newapi = 1;
- s/#.*//;
- if(/\S/) { # First non-comment line
- s/^SYNC=\D*// if $newapi;
- $result = $_;
- last;
- }
- }
- close F;
- if(defined($newsync)) { # Now change
- $newsync =~ s/.*/\U$&/;
- if($newsync =~ /^(\d+)$/) {
- $newsync = ($newapi)? "SYNC=$1" : "$1 0";
- } elsif($newsync ne 'DAHDI') {
- die "Bad sync parameter '$newsync'";
- }
- open(F, ">$file") or die "Failed to open $file for writing: $!";
- print F $newsync;
- close(F) or die "Failed in closing $file: $!";
- }
- return $result;
-}
-
sub sync {
my ($newsync) = @_;
my $result;
my $file = "$sysfs_ab_driver/sync";
- if(! -f $file) { # Old /proc interface
- return sync_via_proc(@_);
- }
+ die "Missing '$file'\n" unless -f $file;
open(F, "$file") or die "Failed to open $file for reading: $!";
$result = <F>;
close F;
@@ -329,7 +293,7 @@ XPD (the rough equivalent of a Dahdi span) object.
=item L<Dahdi::Xpp::Line>
-Object for a line: an analog port or a time-slot in a adapter.
+Object for a line: an analog port or a time-slot in a adapter.
Equivalent of a channel in Dahdi.
=item L<Dahdi>
diff --git a/xpp/perl_modules/Dahdi/Xpp/Line.pm b/xpp/perl_modules/Dahdi/Xpp/Line.pm
index 1302a9e..bb0ec27 100644
--- a/xpp/perl_modules/Dahdi/Xpp/Line.pm
+++ b/xpp/perl_modules/Dahdi/Xpp/Line.pm
@@ -42,7 +42,6 @@ sub blink($$) {
sub create_all($$) {
my $pack = shift or die "Wasn't called as a class method\n";
my $xpd = shift || die;
- my $procdir = shift || die;
local $/ = "\n";
my @lines;
for(my $i = 0; $i < $xpd->{CHANNELS}; $i++) {
@@ -52,37 +51,14 @@ sub create_all($$) {
$xpd->{LINES} = \@lines;
if($xpd->type eq 'FXO') {
my $battery = $xpd->xpd_getattr("fxo_battery");
- if(defined $battery) {
- my @batt = split(/\s+/, $battery);
- foreach my $l (@lines) {
- die unless @batt;
- my $state = shift @batt;
- $l->{BATTERY} = ($state eq '+') ? 1 : 0;
- }
- } else {
- # Fallback to old interface
- my ($infofile) = glob "$procdir/*_info";
- die "Failed globbing '$procdir/*_info'" unless defined $infofile;
- open(F, "$infofile") || die "Failed opening '$infofile': $!";
- my $battery_info = 0;
- while (<F>) {
- chomp;
- $battery_info = 1 if /^Battery:/;
- if($battery_info && s/^\s*on\s*:\s*//) {
- my @batt = split;
- foreach my $l (@lines) {
- die unless @batt;
- my $state = shift @batt;
- $l->{BATTERY} = ($state eq '+') ? 1 : 0;
- }
- $battery_info = 0;
- die if @batt;
- }
- }
- close F;
+ die "Missing '$battery' attribute\n" unless defined $battery;
+ my @batt = split(/\s+/, $battery);
+ foreach my $l (@lines) {
+ die unless @batt;
+ my $state = shift @batt;
+ $l->{BATTERY} = ($state eq '+') ? 1 : 0;
}
}
- close F;
}
diff --git a/xpp/perl_modules/Dahdi/Xpp/Xbus.pm b/xpp/perl_modules/Dahdi/Xpp/Xbus.pm
index b68d7cc..dbfab00 100644
--- a/xpp/perl_modules/Dahdi/Xpp/Xbus.pm
+++ b/xpp/perl_modules/Dahdi/Xpp/Xbus.pm
@@ -51,12 +51,6 @@ sub xbus_attr_path($$) {
my ($busnum, @attr) = @_;
foreach my $attr (@attr) {
my $file = sprintf "$Dahdi::Xpp::sysfs_astribanks/xbus-%02d/$attr", $busnum;
- unless(-f $file) {
- my $procfile = sprintf "$Dahdi::proc_xpp_base/XBUS-%02d/$attr", $busnum;
- warn "$0: warning - OLD DRIVER: missing '$file'. Fall back to '$procfile'\n"
- unless $file_warned{$attr}++;
- $file = $procfile;
- }
next unless -f $file;
return $file;
}
@@ -109,21 +103,6 @@ sub transport_type($$) {
return $xbus->{TRANSPORT_TYPE};
}
-sub read_xpdnames_old($) {
- my $xbus_num = shift || die;
- my $pat = sprintf "$Dahdi::proc_xpp_base/XBUS-%02d/XPD-[0-9][0-9]", $xbus_num;
- my @xpdnames;
-
- #print STDERR "read_xpdnames_old($xbus_num): $pat\n";
- foreach (glob $pat) {
- die "Bad /proc entry: '$_'" unless /^.*XPD-([0-9])([0-9])$/;
- my $name = sprintf("%02d:%1d:%1d", $xbus_num, $1, $2);
- #print STDERR "\t> $_ ($name)\n";
- push(@xpdnames, $name);
- }
- return @xpdnames;
-}
-
sub read_xpdnames($) {
my $xbus_num = shift || die;
my $xbus_dir = "$Dahdi::Xpp::sysfs_astribanks/xbus-$xbus_num";
@@ -141,8 +120,6 @@ sub read_xpdnames($) {
return @xpdnames;
}
-my $warned_notransport = 0;
-
sub new($$) {
my $pack = shift or die "Wasn't called as a class method\n";
my $num = shift;
@@ -164,17 +141,11 @@ sub new($$) {
}
my @xpdnames;
my @xpds;
- if(-e $transport) {
- @xpdnames = read_xpdnames($num);
- } else {
- @xpdnames = read_xpdnames_old($num);
- warn "$0: warning - OLD DRIVER: missing '$transport'. Fall back to /proc\n"
- unless $warned_notransport++;
- }
+ die "OLD DRIVER: missing '$transport'\n" unless -e $transport;
+ @xpdnames = read_xpdnames($num);
foreach my $xpdstr (@xpdnames) {
my ($busnum, $unit, $subunit) = split(/:/, $xpdstr);
- my $procdir = "$Dahdi::proc_xpp_base/XBUS-$busnum/XPD-$unit$subunit";
- my $xpd = Dahdi::Xpp::Xpd->new($self, $unit, $subunit, $procdir, "$xbus_dir/$xpdstr");
+ my $xpd = Dahdi::Xpp::Xpd->new($self, $unit, $subunit, "$xbus_dir/$xpdstr");
push(@xpds, $xpd);
}
@{$self->{XPDS}} = sort { $a->id <=> $b->id } @xpds;
diff --git a/xpp/perl_modules/Dahdi/Xpp/Xpd.pm b/xpp/perl_modules/Dahdi/Xpp/Xpd.pm
index 197d969..7edfc58 100644
--- a/xpp/perl_modules/Dahdi/Xpp/Xpd.pm
+++ b/xpp/perl_modules/Dahdi/Xpp/Xpd.pm
@@ -52,11 +52,6 @@ Applicable only to digital (BRI/PRI) modules and always 0 for others.
Textual name: E.g. C<XPD-10>.
-=head1 dir
-
-The ProcFS directory with information about the XPD. e.g.
-C</proc/xpp/XBUS-00/XPD-10>.
-
=head1 sysfs_dir
The SysFS directory with information about the module. E.g.
@@ -112,65 +107,12 @@ sub xpd_attr_path($@) {
foreach my $attr (@attr) {
my $file = sprintf "$Dahdi::Xpp::sysfs_xpds/%02d:%1d:%1d/$attr",
$busnum, $unitnum, $subunitnum;
- unless(-f $file) {
- my $procfile = sprintf "/proc/xpp/XBUS-%02d/XPD-%1d%1d/$attr",
- $busnum, $unitnum, $subunitnum;
- warn "$0: warning - OLD DRIVER: missing '$file'. Fall back to /proc\n"
- unless $file_warned{$attr}++;
- $file = $procfile;
- }
next unless -f $file;
return $file;
}
return undef;
}
-# Backward compat plug for old /proc interface...
-sub xpd_old_gettype($) {
- my $xpd = shift || die;
- my $summary = "/proc/xpp/" . $xpd->fqn . "/summary";
- open(F, $summary) or die "Failed to open '$summary': $!";
- my $head = <F>;
- close F;
- chomp $head;
- $head =~ s/^XPD-\d+\s+\(//;
- $head =~ s/,.*//;
- return $head;
-}
-
-sub xpd_old_getspan($) {
- my $xpd = shift || die;
- my $dahdi_registration = "/proc/xpp/" . $xpd->fqn . "/dahdi_registration";
- open(F, $dahdi_registration) or die "Failed to open '$dahdi_registration': $!";
- my $head = <F>;
- close F;
- chomp $head;
- return $head;
-}
-
-sub xpd_old_getoffhook($) {
- my $xpd = shift || die;
- my $summary = "/proc/xpp/" . $xpd->fqn . "/summary";
- my $channels;
-
- local $/ = "\n";
- open(F, "$summary") || die "Failed opening $summary: $!\n";
- my $head = <F>;
- chomp $head; # "XPD-00 (BRI_TE ,card present, span 3)"
- my $offhook;
- while(<F>) {
- chomp;
- if(s/^\s*offhook\s*:\s*//) {
- s/\s*$//;
- $offhook = $_;
- $offhook || die "No channels in '$summary'";
- last;
- }
- }
- close F;
- return $offhook;
-}
-
my %attr_missing_warned; # Prevent duplicate warnings
sub xpd_driver_getattr($$) {
@@ -198,10 +140,6 @@ sub xpd_getattr($$) {
$attr = lc($attr);
my $file = $xpd->xpd_attr_path(lc($attr));
- # Handle special cases for backward compat
- return xpd_old_gettype($xpd) if $attr eq 'type' and !defined $file;
- return xpd_old_getspan($xpd) if $attr eq 'span' and !defined $file;
- return xpd_old_getoffhook($xpd) if $attr eq 'offhook' and !defined $file;
if(!defined($file)) {
warn "$0: xpd_getattr($attr) -- Missing attribute.\n" if
$attr_missing_warned{$attr};
@@ -284,7 +222,6 @@ sub new($$$$$) {
my $xbus = shift || die;
my $unit = shift; # May be zero
my $subunit = shift; # May be zero
- my $procdir = shift || die;
my $sysfsdir = shift || die;
my $self = {
XBUS => $xbus,
@@ -292,7 +229,6 @@ sub new($$$$$) {
FQN => $xbus->name . "/" . "XPD-$unit$subunit",
UNIT => $unit,
SUBUNIT => $subunit,
- DIR => $procdir,
SYSFS_DIR => $sysfsdir,
};
bless $self, $pack;
@@ -319,7 +255,7 @@ sub new($$$$$) {
}
}
$self->{IS_DIGITAL} = ( $self->{IS_BRI} || $self->{IS_PRI} );
- Dahdi::Xpp::Line->create_all($self, $procdir);
+ Dahdi::Xpp::Line->create_all($self);
return $self;
}
diff --git a/xpp/xpp_sync b/xpp/xpp_sync
index 41cfd61..1d84b8b 100755
--- a/xpp/xpp_sync
+++ b/xpp/xpp_sync
@@ -19,7 +19,7 @@ my $sync;
my $autoselect;
sub usage() {
- print
+ print
"$0: show / set Astribank sync source\n".
"\n".
"Usage: $0 [-v] Show sync source.\n".
@@ -158,7 +158,7 @@ When run without parameters, xpp_sync will display a list of Astribanks
(xbuses) that are connected and registered as Dahdi spans. The current
xpp sync master will be marked.
-If you this an Astribank is connected and yet it does not appear on the
+If you this an Astribank is connected and yet it does not appear on the
output of xpp_sync, it may be unregistered. Try running dahdi_registration .
=head2 Parameters
@@ -199,12 +199,12 @@ Also print the numeric xpp sync rank.
XBUS-00
==================================================
-In this example we see that the recommended xpp sync master is XBUS-02 -
+In this example we see that the recommended xpp sync master is XBUS-02 -
it is the first on the list. It is also the actual syncer, as we can see
from the '+' beside it.
xpp_sync is normally called from the dahdi init.d script.
-The parameter it is called with defaults to
+The parameter it is called with defaults to
I<auto>, but it is possible to override that parameter (e.g: set it to
I<dahdi>) through the value of XPP_SYNC in /etc/dahdi/init.conf .
@@ -212,12 +212,13 @@ I<dahdi>) through the value of XPP_SYNC in /etc/dahdi/init.conf .
=over
-=item /proc/xpp/sync
+=item /sys/bus/astribanks/drivers/xppdrv/sync
-(Deprecated: no longer supported)
-xpp_sync is essentially a nicer interface to /proc/xpp/sync . That file
-shows the current xpp sync master (and in what format you need to write
-to it to set the master).
+xpp_sync is essentially a nicer interface to
+C</sys/bus/astribanks/drivers/xppdrv/sync>. That file
+shows the current xpp sync master.
+
+Writing to it, force XPP drivers to use a different sync master
=back