firmware/misc/gpu/main.h
2023-12-11 12:26:01 -05:00

39 lines
1.1 KiB
C

/*
* (c) Copyright 2018 by Coinkite Inc. This file is covered by license found in COPYING-CC.
*/
#pragma once
#include "basics.h"
// note: USE_FULL_LL_DRIVER is defined in Makefile for all files.
#include "stm32c0xx.h"
#include "stm32c0xx_ll_bus.h"
#include "stm32c0xx_ll_gpio.h"
#include "stm32c0xx_ll_spi.h"
#include "stm32c0xx_ll_i2c.h"
#include "stm32c0xx_ll_rcc.h"
#include "stm32c0xx_ll_utils.h"
// Pins in use: be careful, most are also controlled by main micro
// Port A
#define PIN_G_CTRL LL_GPIO_PIN_0
#define PIN_SCLK LL_GPIO_PIN_1
#define PIN_MOSI LL_GPIO_PIN_2
#define PIN_DATA_CMD LL_GPIO_PIN_3
#define PIN_CS LL_GPIO_PIN_4
#define PIN_TEAR LL_GPIO_PIN_5
#define PIN_GPU_BUSY LL_GPIO_PIN_14 // G_SWCLK_B0 pin to CPU
#define INPUT_PINS (PIN_TEAR | PIN_G_CTRL)
#define OUTPUT_PINS (PIN_GPU_BUSY)
#define SPI_PINS (PIN_MOSI | PIN_SCLK)
#define SPI_CTRL_PINS (PIN_DATA_CMD | PIN_CS)
// Port B
#define PIN_SCL LL_GPIO_PIN_6
#define PIN_SDA LL_GPIO_PIN_7
#define I2C_PINS PIN_SCL | PIN_SDA
// EOF