com.diozero.internal.board.tinkerboard.TinkerBoardBoardInfoProvider Maven / Gradle / Ivy
package com.diozero.internal.board.tinkerboard;
/*-
* #%L
* Organisation: diozero
* Project: diozero - Core
* Filename: TinkerBoardBoardInfoProvider.java
*
* This file is part of the diozero project. More information about this project
* can be found at https://www.diozero.com/.
* %%
* Copyright (C) 2016 - 2021 diozero
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* #L%
*/
import com.diozero.internal.board.GenericLinuxArmBoardInfo;
import com.diozero.internal.spi.BoardInfoProvider;
import com.diozero.internal.spi.MmapGpioInterface;
import com.diozero.sbc.BoardInfo;
import com.diozero.sbc.LocalSystemInfo;
public class TinkerBoardBoardInfoProvider implements BoardInfoProvider {
public static final String MAKE = "Asus";
private static final String TINKER_BOARD_HARDWARE_ID = "Rockchip (Device Tree)";
@Override
public BoardInfo lookup(LocalSystemInfo localSysInfo) {
if (localSysInfo.getHardware() != null && localSysInfo.getHardware().equals(TINKER_BOARD_HARDWARE_ID)) {
return new TinkerBoardBoardInfo();
}
return null;
}
public static class TinkerBoardBoardInfo extends GenericLinuxArmBoardInfo {
public static final String MODEL = "Tinker Board";
private static final int MEMORY_KB = 2_048_000;
// private static final String LIBRARY_PATH = "tinkerboard";
TinkerBoardBoardInfo() {
super(MAKE, MODEL, MEMORY_KB);
}
@Override
public MmapGpioInterface createMmapGpio() {
return new TinkerBoardMmapGpio();
}
}
}