mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
aspeed/timer: Add AST1030 support
ast1030 tmc(timer controller) is identical to ast2600 tmc. Signed-off-by: Troy Lee <troy_lee@aspeedtech.com> Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com> Signed-off-by: Steven Lee <steven_lee@aspeedtech.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Message-Id: <20220401083850.15266-6-jamin_lin@aspeedtech.com> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
e259e01ecb
commit
c5b89a4f47
2 changed files with 18 additions and 0 deletions
|
@ -745,12 +745,29 @@ static const TypeInfo aspeed_2600_timer_info = {
|
|||
.class_init = aspeed_2600_timer_class_init,
|
||||
};
|
||||
|
||||
static void aspeed_1030_timer_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
AspeedTimerClass *awc = ASPEED_TIMER_CLASS(klass);
|
||||
|
||||
dc->desc = "ASPEED 1030 Timer";
|
||||
awc->read = aspeed_2600_timer_read;
|
||||
awc->write = aspeed_2600_timer_write;
|
||||
}
|
||||
|
||||
static const TypeInfo aspeed_1030_timer_info = {
|
||||
.name = TYPE_ASPEED_1030_TIMER,
|
||||
.parent = TYPE_ASPEED_TIMER,
|
||||
.class_init = aspeed_1030_timer_class_init,
|
||||
};
|
||||
|
||||
static void aspeed_timer_register_types(void)
|
||||
{
|
||||
type_register_static(&aspeed_timer_info);
|
||||
type_register_static(&aspeed_2400_timer_info);
|
||||
type_register_static(&aspeed_2500_timer_info);
|
||||
type_register_static(&aspeed_2600_timer_info);
|
||||
type_register_static(&aspeed_1030_timer_info);
|
||||
}
|
||||
|
||||
type_init(aspeed_timer_register_types)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue