![JAR search and dependency download from the Maven repository](/logo.png)
com.diozero.internal.board.allwinner.AllwinnerH5BoardInfoProvider Maven / Gradle / Ivy
package com.diozero.internal.board.allwinner;
/*-
* #%L
* Organisation: diozero
* Project: diozero - Core
* Filename: AllwinnerH5BoardInfoProvider.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;
/**
* https://linux-sunxi.org/Xunlong_Orange_Pi_Zero_Plus
* https://linux-sunxi.org/GPIO
* https://github.com/friendlyarm/WiringNP/blob/master/wiringPi/boardtype_friendlyelec.c#L66
*/
public class AllwinnerH5BoardInfoProvider implements BoardInfoProvider {
// Not reliable
// public static final String ORANGEPI_ZEROPLUS_HARDWARE = "sun50iw1p1";
// E.g. CONFIG_ORANGEPI_PC2, CONFIG_ORANGEPI_ZEROPLUS,
// CONFIG_ORANGEPI_ZEROPLUS2_H5, CONFIG_ORANGEPI_PRIME, NanoPi_NEO2
public static final String ORANGEPI_H5_HARDWARE = "sun50iw2";
public static final String ORANGEPI_ZEROPLUS_MODEL = "OrangePi Zero Plus";
public static final String MAKE = "Allwinner H5";
@Override
public BoardInfo lookup(LocalSystemInfo sysInfo) {
if ((sysInfo.getHardware() != null && sysInfo.getHardware().equals(ORANGEPI_H5_HARDWARE))
|| (sysInfo.getModel() != null && sysInfo.getModel().equals(ORANGEPI_ZEROPLUS_MODEL))) {
return new AllwinnerH5BoardInfo(sysInfo);
}
return null;
}
public static class AllwinnerH5BoardInfo extends GenericLinuxArmBoardInfo {
public AllwinnerH5BoardInfo(LocalSystemInfo localSysInfo) {
super(localSysInfo, MAKE);
}
@Override
public MmapGpioInterface createMmapGpio() {
return new AllwinnerH5MmapGpio();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy