[target][mt6735] add mt6735 support

Add common target based on platform mt6735.

Signed-off-by: Macpaul Lin <macpaul@gmail.com>
This commit is contained in:
Macpaul Lin
2018-05-20 16:10:58 +08:00
committed by Travis Geiselbrecht
parent 5bec0e8460
commit bf27ebd7bb
2 changed files with 51 additions and 0 deletions

33
target/mt6735/init.c Normal file
View File

@@ -0,0 +1,33 @@
/*
* Copyright (c) 2015 MediaTek Inc.
*
* 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.
*/
#include <debug.h>
#include <reg.h>
#include <target.h>
void target_early_init(void)
{
}
void target_init(void)
{
}

18
target/mt6735/rules.mk Normal file
View File

@@ -0,0 +1,18 @@
LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
PLATFORM := mediatek
SUB_PLATFORM := mt6735
MEMBASE := 0x41E00000
MEMSIZE := 0x00900000
GLOBAL_DEFINES += \
MEMBASE=$(MEMBASE)
MODULE_SRCS += \
$(LOCAL_DIR)/init.c
include make/module.mk