Vivien Didelot | 18abed2 | 2016-11-04 03:23:26 +0100 | [diff] [blame^] | 1 | /* |
| 2 | * Marvell 88E6xxx Switch Port Registers support |
| 3 | * |
| 4 | * Copyright (c) 2008 Marvell Semiconductor |
| 5 | * |
| 6 | * Copyright (c) 2016 Vivien Didelot <vivien.didelot@savoirfairelinux.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #include "mv88e6xxx.h" |
| 15 | #include "port.h" |
| 16 | |
| 17 | int mv88e6xxx_port_read(struct mv88e6xxx_chip *chip, int port, int reg, |
| 18 | u16 *val) |
| 19 | { |
| 20 | int addr = chip->info->port_base_addr + port; |
| 21 | |
| 22 | return mv88e6xxx_read(chip, addr, reg, val); |
| 23 | } |
| 24 | |
| 25 | int mv88e6xxx_port_write(struct mv88e6xxx_chip *chip, int port, int reg, |
| 26 | u16 val) |
| 27 | { |
| 28 | int addr = chip->info->port_base_addr + port; |
| 29 | |
| 30 | return mv88e6xxx_write(chip, addr, reg, val); |
| 31 | } |