您尚未登录。

#2 全志 SOC » 关于如何将f1c100s/f1c200s linux中将RGB引脚交换为BGR » 2021-07-09 21:23:49

liuy
回复: 5

根据f1c100s的数据手册,TCON0_Control_Register BIT23是 Swap RED and BLUE data at FIFO1

路径 linux/drivers/gpu/drm/sun4i/sun4i_tcon.c 添加如下语句

static void sun4i_tcon_channel_set_status(struct sun4i_tcon *tcon, int channel,
					  bool enabled)
{
	struct clk *clk;

	switch (channel) {
	case 0:
		regmap_update_bits(tcon->regs, SUN4I_TCON0_CTL_REG,
				   SUN4I_TCON0_CTL_TCON_ENABLE,
				   enabled ? SUN4I_TCON0_CTL_TCON_ENABLE : 0);

		regmap_update_bits(tcon->regs, SUN4I_TCON0_CTL_REG,BIT(23),BIT(23));//SWAP R、B引脚

		clk = tcon->dclk;
		break;
	case 1:
		WARN_ON(!tcon->quirks->has_channel_1);
		regmap_update_bits(tcon->regs, SUN4I_TCON1_CTL_REG,
				   SUN4I_TCON1_CTL_TCON_ENABLE,
				   enabled ? SUN4I_TCON1_CTL_TCON_ENABLE : 0);
		clk = tcon->sclk1;
		break;
	default:
		DRM_WARN("Unknown channel... doing nothing\n");
		return;
	}

	if (enabled)
		clk_prepare_enable(clk);
	else
		clk_disable_unprepare(clk);
}

#3 Re: 全志 SOC » 说好的分享V3S R11的SPL,无需uboot SPI DMA直接启动kernel » 2021-07-09 21:08:45

想知道如何用iar的代码如何引导到cpu,奈何积分

#4 Re: Nuvoton N32905/N32926/NUC972/N9H20/N9H26/N9H30 » 最近公司立案开发新唐 N9H30, 开帖记录全过程 » 2020-09-15 13:27:50

nuvoton 说:

@超级萌新 N9H 和 NUC972 共用了 SDK, 估计外设大同小异,但是有朋友说 972 跑不了 N9H 带的 emwin, 说明还是有小小的差异。

@firstman 谢谢提醒, 晚点试一试用久禁止签名.

我用N32905U1DN移植了N9H30的emwin,可以正常运行,但是会出现很多莫名奇妙的问题,比如仿真时功能一切正常,下载运行,点个按键直接死机,多加了switch语句直接死机,搞得崩溃了。好不容易可以正常运行,结果实现的功能不对了。

#5 Re: 全志 SOC » 感谢@晕哥邀请和测试,发布一个widora tiny200 480x272 5寸电阻屏TF卡固件, 开机跑 emwin,账号root,无密码 » 2020-07-24 17:03:42

楼主,这个RTC pcf8563怎么开启啊,我这边编译后,用命令 hwclock 发现如下错误

# hwclock
hwclock: can't open '/dev/misc/rtc': No such file or directory
能指导一下吗?

#6 Re: 全志 SOC » v3s 怎么使用gpio模拟iic » 2020-07-24 12:59:07

我也在用模拟iic,请问启动了吗?

# dmesg | grep i2c
[    0.120130] i2c-gpio i2c-gpio: error trying to get descriptor: -2
[    0.981720] i2c /dev entries driver
[    6.656316] goodix-ts 1-005d: GTP i2c test failed time 1
[   11.086325] goodix-ts 1-005d: GTP i2c test failed time 2
[   15.516320] goodix-ts 1-005d: GTP i2c test failed time 3
[   15.544682] i2c-gpio i2c-gpio: using lines 3 (SDA) and 0 (SCL),-1


一直是这个错误

#7 Re: 全志 SOC » 再来请教F1c200s的i2c总线驱动mv64xxx.c获取时钟失败问题 » 2020-07-24 12:03:36

i2c0: i2c@1C27000 {
                    compatible = "allwinner,sun6i-a31-i2c";
                    reg = <0x01C27000 0x400>;
                    interrupts = <7>;
                    clocks = <&ccu CLK_BUS_I2C0>; //mark
                    resets = <&ccu RST_BUS_I2C0>;
                    pinctrl-names = "default";
                    pinctrl-0 = <&i2c0_pins>;
                    status = "disabled";
                    #address-cells = <1>;
                    #size-cells = <0>;
            };
你的设备树问题,clock 没有s

#8 Re: 全志 SOC » 鼓捣荔枝派Nano(F1C100S)几十天的感想:烧写(下载)真难! » 2020-06-29 16:20:47

PhoenixSuit 这个软件好像不能用,板子插上电脑一点反应没有

#9 Re: 全志 SOC » 尝试从一开发F1C100s应用 » 2020-06-29 16:17:43

楼主能不能出一个SPI NAND启动教程啊

页脚

工信部备案:粤ICP备20025096号 Powered by FluxBB

感谢为中文互联网持续输出优质内容的各位老铁们。 QQ: 516333132, 微信(wechat): whycan_cn (哇酷网/挖坑网/填坑网) service@whycan.cn