-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: dsa: mv88e6xxx: move VTU Operation accessors
Move the helper functions to access the Global 1 VTU Operation register to a new global1_vtu.c file, and get rid of the old underscore prefix naming convention. This file will be extended will all VTU/STU related code. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Vivien Didelot
authored and
David S. Miller
committed
May 1, 2017
1 parent
bd00e05
commit 332aa5c
Showing
4 changed files
with
47 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Marvell 88E6xxx VLAN [Spanning Tree] Translation Unit (VTU [STU]) support | ||
* | ||
* Copyright (c) 2008 Marvell Semiconductor | ||
* Copyright (c) 2015 CMC Electronics, Inc. | ||
* Copyright (c) 2017 Savoir-faire Linux, 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. | ||
*/ | ||
|
||
#include "mv88e6xxx.h" | ||
#include "global1.h" | ||
|
||
/* Offset 0x05: VTU Operation Register */ | ||
|
||
int mv88e6xxx_g1_vtu_op_wait(struct mv88e6xxx_chip *chip) | ||
{ | ||
return mv88e6xxx_g1_wait(chip, GLOBAL_VTU_OP, GLOBAL_VTU_OP_BUSY); | ||
} | ||
|
||
int mv88e6xxx_g1_vtu_op(struct mv88e6xxx_chip *chip, u16 op) | ||
{ | ||
int err; | ||
|
||
err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_OP, op); | ||
if (err) | ||
return err; | ||
|
||
return mv88e6xxx_g1_vtu_op_wait(chip); | ||
} |