forked from Qortal/Brooklyn
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
23 lines
532 B
C
23 lines
532 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Support for the Marvell PXA168 Teton BGA Development Platform.
|
|
*/
|
|
#ifndef __ASM_MACH_TETON_BGA_H
|
|
#define __ASM_MACH_TETON_BGA_H
|
|
|
|
/* GPIOs */
|
|
#define MMC_PWENA_GPIO 27
|
|
#define USBHPENB_GPIO 55
|
|
#define RTC_INT_GPIO 78
|
|
#define LCD_VBLK_EN_GPIO 79
|
|
#define LCD_DVDD_EN_GPIO 80
|
|
#define RST_WIFI_GPIO 81
|
|
#define CF_PWEN_GPIO 82
|
|
#define USB_OC_GPIO 83
|
|
#define PWM_GPIO 84
|
|
#define USBHPENA_GPIO 85
|
|
#define TS_INT_GPIO 86
|
|
#define CIR_GPIO 108
|
|
|
|
#endif /* __ASM_MACH_TETON_BGA_H */
|