Release 4.8 arch/arm/mach-imx/mm-imx1.c
/*
* author: Sascha Hauer
* Created: april 20th, 2004
* Copyright: Synertronixx GmbH
*
* Common code for i.MX1 machines
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/pinctrl/machine.h>
#include <asm/mach/map.h>
#include "common.h"
#include "devices/devices-common.h"
#include "hardware.h"
#include "iomux-v1.h"
static struct map_desc imx_io_desc[] __initdata = {
imx_map_entry(MX1, IO, MT_DEVICE),
};
void __init mx1_map_io(void)
{
iotable_init(imx_io_desc, ARRAY_SIZE(imx_io_desc));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
uwe kleine-koenig | uwe kleine-koenig | 11 | 61.11% | 1 | 33.33% |
paulius zaleckas | paulius zaleckas | 6 | 33.33% | 1 | 33.33% |
sascha hauer | sascha hauer | 1 | 5.56% | 1 | 33.33% |
| Total | 18 | 100.00% | 3 | 100.00% |
void __init imx1_init_early(void)
{
mxc_set_cpu_type(MXC_CPU_MX1);
imx_iomuxv1_init(MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR),
MX1_NUM_GPIO_PORT);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
sascha hauer | sascha hauer | 15 | 65.22% | 2 | 50.00% |
uwe kleine-koenig | uwe kleine-koenig | 7 | 30.43% | 1 | 25.00% |
paulius zaleckas | paulius zaleckas | 1 | 4.35% | 1 | 25.00% |
| Total | 23 | 100.00% | 4 | 100.00% |
void __init mx1_init_irq(void)
{
mxc_init_irq(MX1_IO_ADDRESS(MX1_AVIC_BASE_ADDR));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 15 | 93.75% | 1 | 50.00% |
sascha hauer | sascha hauer | 1 | 6.25% | 1 | 50.00% |
| Total | 16 | 100.00% | 2 | 100.00% |
void __init imx1_soc_init(void)
{
imx1_reset_init(MX1_IO_ADDRESS(MX1_WDT_BASE_ADDR));
mxc_device_init();
mxc_register_gpio("imx1-gpio", 0, MX1_GPIO1_BASE_ADDR, SZ_256,
MX1_GPIO_INT_PORTA, 0);
mxc_register_gpio("imx1-gpio", 1, MX1_GPIO2_BASE_ADDR, SZ_256,
MX1_GPIO_INT_PORTB, 0);
mxc_register_gpio("imx1-gpio", 2, MX1_GPIO3_BASE_ADDR, SZ_256,
MX1_GPIO_INT_PORTC, 0);
mxc_register_gpio("imx1-gpio", 3, MX1_GPIO4_BASE_ADDR, SZ_256,
MX1_GPIO_INT_PORTD, 0);
imx_add_imx_dma("imx1-dma", MX1_DMA_BASE_ADDR,
MX1_DMA_INT, MX1_DMA_ERR);
pinctrl_provide_dummies();
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 59 | 63.44% | 5 | 45.45% |
sascha hauer | sascha hauer | 26 | 27.96% | 2 | 18.18% |
gwenhael goavec-merou | gwenhael goavec-merou | 3 | 3.23% | 1 | 9.09% |
dong aisheng | dong aisheng | 3 | 3.23% | 1 | 9.09% |
arnd bergmann | arnd bergmann | 1 | 1.08% | 1 | 9.09% |
jason wang | jason wang | 1 | 1.08% | 1 | 9.09% |
| Total | 93 | 100.00% | 11 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 80 | 40.82% | 7 | 35.00% |
sascha hauer | sascha hauer | 47 | 23.98% | 5 | 25.00% |
paulius zaleckas | paulius zaleckas | 32 | 16.33% | 1 | 5.00% |
uwe kleine-koenig | uwe kleine-koenig | 26 | 13.27% | 3 | 15.00% |
dong aisheng | dong aisheng | 6 | 3.06% | 1 | 5.00% |
gwenhael goavec-merou | gwenhael goavec-merou | 3 | 1.53% | 1 | 5.00% |
jason wang | jason wang | 1 | 0.51% | 1 | 5.00% |
arnd bergmann | arnd bergmann | 1 | 0.51% | 1 | 5.00% |
| Total | 196 | 100.00% | 20 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.